summaryrefslogtreecommitdiff
path: root/ci-runner/Cargo.toml
blob: 038ed148b35bc3cb3eecda4a45e633a384af65b8 (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
[package]
name = "ci-runner"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
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 = "*"