-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
49 lines (44 loc) · 1.55 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "obs-gitlab-runner"
version = "0.1.8"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
backoff = { version = "0.4", features = ["tokio"] }
base16ct = { version = "0.1", features = ["std"] }
bytes = "1.1"
camino = "1.0"
clap = { version = "3.1", features = ["default", "derive", "env"] }
color-eyre = "0.6"
derivative = "2.2"
futures-util = "0.3"
md-5 = "0.10"
reqwest = "0.11"
rfc822-like = "0.2"
serde = "1.0"
serde_yaml = "0.8"
shellexpand = { version = "2.1", package = "shellexpand-fork" }
shell-words = "1.1"
strum = { version = "0.24", features = ["derive"] }
tempfile = "3.3"
tokio = { version = "1.18", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
tracing = "0.1"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", features = ["default", "json"] }
url = "2.2"
gitlab-runner = "0.0.7"
# gitlab-runner = { path = "../gitlab-runner-rs/gitlab-runner" }
open-build-service-api = { git = "https://github.com/collabora/open-build-service-rs" }
# open-build-service-api = { path = "../open-build-service-rs/open-build-service-api" }
[dev-dependencies]
claim = "0.5"
rstest = "0.12"
wiremock = "0.5"
zip = "0.5"
gitlab-runner-mock = "0.0.5"
# gitlab-runner-mock = { path = "../gitlab-runner-rs/gitlab-runner-mock" }
open-build-service-mock = { git = "https://github.com/collabora/open-build-service-rs" }
# open-build-service-mock = { path = "../open-build-service-rs/open-build-service-mock" }