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

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

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

axum = { version = "*" }
axum-extra = { version = "*", features = ["async-read-body"] }
axum-server = { version = "*", features = ["tls-rustls"] }
axum-macros = "*"
serde_json = "*"
serde = { version = "*", features = ["derive"] }
base64 = "*"
tokio = { version = "*", features = ["full"] }
tokio-stream = "*"
tracing-subscriber = "*"
hyper = "*"
futures-util = "*"
lazy_static = "*"
lettre = "*"
reqwest = "*"