summaryrefslogtreecommitdiff
path: root/ci-web-server/Cargo.toml
blob: 164ec56b43b7d6c406a93a4ae3009c6497296c40 (plain)
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
[package]
name = "ci-web-server"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
edition = "2021"

[[bin]]
name = "ci_web_server"
path = "src/main.rs"

[dependencies]
ci-lib-core = { path = "../ci-lib-core" }
ci-lib-native = { path = "../ci-lib-native" }
ci-lib-web = { path = "../ci-lib-web" }

tokio = { version = "*", features = ["full"] }
tokio-stream = "*"
serde_json = "*"
serde = { version = "*", features = ["derive"] }
axum-server = { version = "*", features = ["tls-rustls"] }
axum-extra = { version = "*", features = ["async-read-body"] }
axum = "*"
hex = "*"
tracing-subscriber = "*"
hmac = "*"
http = "*"
http-body = "*"
chrono = "*"
lazy_static = "*"
sha2 = "*"
rusqlite = { version = "*" }