summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 832d81f60c1300b4d7695c819f83dbf01af57200 (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
33
34
35
[package]
name = "ixi-ci-server"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
edition = "2021"

[dependencies]
# warp = { version = "*", features = ["tls"] }
axum = { version = "*" }
axum-server = { version = "*", features = ["tls-rustls"] }
handlebars = "*"
libc = "*"
serde = "*"
serde_derive = "*"
serde_json = "*"
rand = "*"
tokio = { version = "*", features = ["full"] }
tracing = "*"
tracing-subscriber = "*"
http-body = "*"
rusqlite = "*"
http = "*"
hmac = "*"
hex = "*"
sha2 = "*"
reqwest = { version = "*", features = ["rustls-tls-native-roots"] }

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

[[bin]]
name = "ci_driver"
path = "src/ci_driver.rs"