-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "yggdrasil"
version = "0.1.0"
edition = "2021"
description = "Web server aggregating all personal projects"
readme = "README.md"
exclude = [ ".github" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [patch."https://github.com/eta077/earendel"]
# earendel = { path = "../earendel" }
# [patch."https://github.com/eta077/heimdall"]
# heimdall = { path = "../heimdall/heimdall" }
[dependencies]
ammonia = "3.3.0"
axum = { version = "0.6.12", features = ["json", "ws"] }
axum-extra = { version = "0.7.4", features = ["cookie", "cookie-private"]}
earendel = { version = "*", git = "https://github.com/eta077/earendel.git" }
heimdall = { version = "*", git = "https://github.com/eta077/heimdall.git" }
pulldown-cmark = { version = "0.9.3", default-features = false, features = ["simd"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
tokio = { version = "1.26.0", features = ["full"] }
tower-http = { version = "0.4.3", features = ["trace"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
[features]
default = ["debug"]
debug = []
production = []