From 7734472faa9e0ecb18bab286055aceaa13c9c947 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 4 Dec 2022 21:07:57 +0000 Subject: add ci driver, webserver. they work. "work" is a strong word. --- Cargo.toml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..832d81f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,35 @@ +[package] +name = "ixi-ci-server" +version = "0.0.1" +authors = [ "iximeow " ] +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" -- cgit v1.1