aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 9a08b4aaf56c1f83932ee26b76fdd74d01eefc4d (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
[package]
name = "nccd"
version = "0.1.0"
edition = "2021"

build = "src/build.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = { version = "0.5.13", features = ["json", "tower-log"] }
axum-extra = { version = "0.3.6", features = ["spa"] }
color-eyre = "0.6.2"
hyper = { version = "0.14.20", features = ["full"] }
serde = { version = "1.0.139", features = ["derive"] }
thiserror = "1.0.31"
tokio = { version = "1.20.0", features = ["full"] }
toml = "0.5.9"
tower = { version = "0.4.13", features = ["util", "timeout"] }
tower-http = { version = "0.3.4", features = ["add-extension", "trace"] }
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
axum-macros = "0.2.3"
chrono = "0.4.19"

[dependencies.sqlx]
version = "0.6"
features = [
    "postgres",
    "ipnetwork",
    "chrono",
    "runtime-tokio-rustls"
    ]


[dependencies.ructe]
version = "0.14"
features = [
    "sass"
]
[build-dependencies.ructe]
version = "0.14"
features = [
    "sass"
]