diff options
Diffstat (limited to 'ci-driver/Cargo.toml')
-rw-r--r-- | ci-driver/Cargo.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ci-driver/Cargo.toml b/ci-driver/Cargo.toml new file mode 100644 index 0000000..697f929 --- /dev/null +++ b/ci-driver/Cargo.toml @@ -0,0 +1,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 = "*" |