From 9e6906c00c49186189d211dc96e132d85e7ff641 Mon Sep 17 00:00:00 2001 From: iximeow Date: Thu, 13 Jul 2023 00:51:51 -0700 Subject: reorganize the whole thing into crates/ packages --- ci-runner/Cargo.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ci-runner/Cargo.toml (limited to 'ci-runner/Cargo.toml') diff --git a/ci-runner/Cargo.toml b/ci-runner/Cargo.toml new file mode 100644 index 0000000..038ed14 --- /dev/null +++ b/ci-runner/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "ci-runner" +version = "0.0.1" +authors = [ "iximeow " ] +license = "0BSD" +edition = "2021" + +[[bin]] +name = "ci_runner" +path = "src/main.rs" + +[dependencies] +ci-lib-core = { path = "../ci-lib-core" } +ci-lib-native = { path = "../ci-lib-native" } + +libc = "*" +serde = "*" +serde_derive = "*" +serde_json = "*" +tokio = { version = "*", features = ["full"] } +reqwest = "*" +rlua = "*" +hyper = "*" +tracing = "*" +tracing-subscriber = "*" -- cgit v1.1