2022-10-11 00:38:48 +03:00
|
|
|
[package]
|
|
|
|
name = "ide-ci"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
2023-01-28 01:39:37 +03:00
|
|
|
anyhow = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
async-compression = { version = "0.3.12", features = ["tokio", "gzip"] }
|
2024-03-25 02:45:55 +03:00
|
|
|
async-trait = "0.1.78"
|
2022-10-11 00:38:48 +03:00
|
|
|
bincode = "1.3.3"
|
2023-01-28 01:39:37 +03:00
|
|
|
bytes = { workspace = true }
|
2024-05-07 19:22:11 +03:00
|
|
|
chrono = { workspace = true }
|
2024-04-03 14:32:03 +03:00
|
|
|
clap = { workspace = true }
|
2024-08-22 17:09:17 +03:00
|
|
|
convert_case = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
data-encoding = "2.3.2"
|
2024-03-25 02:45:55 +03:00
|
|
|
dependency_runner = "1.1.0"
|
2024-08-14 02:16:55 +03:00
|
|
|
derive-where = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
derive_more = { workspace = true }
|
2023-11-23 23:19:31 +03:00
|
|
|
dirs = { workspace = true }
|
2022-11-09 02:15:26 +03:00
|
|
|
enso-build-base = { path = "../base" }
|
2023-06-17 17:14:19 +03:00
|
|
|
enso-zst = { path = "../../lib/rust/zst" }
|
2024-05-07 19:22:11 +03:00
|
|
|
flate2 = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
flume = "0.10.10"
|
2024-03-25 02:45:55 +03:00
|
|
|
fs_extra = "1.3.0"
|
2023-01-28 01:39:37 +03:00
|
|
|
futures = { workspace = true }
|
2024-08-14 02:16:55 +03:00
|
|
|
futures-util = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
glob = "0.3.0"
|
|
|
|
headers = "0.3.7"
|
|
|
|
http-serde = "1.1.0"
|
2024-05-07 19:22:11 +03:00
|
|
|
indicatif = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
itertools = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
2024-08-14 02:16:55 +03:00
|
|
|
mime = { workspace = true }
|
2024-05-07 19:22:11 +03:00
|
|
|
multimap = { workspace = true }
|
2024-08-14 02:16:55 +03:00
|
|
|
new_mime_guess = { workspace = true }
|
2023-01-27 03:09:09 +03:00
|
|
|
octocrab = { workspace = true }
|
2024-05-07 19:22:11 +03:00
|
|
|
path-absolutize = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
pathdiff = "0.2.1"
|
|
|
|
path-slash = "0.2.1"
|
2024-01-17 10:54:37 +03:00
|
|
|
portpicker = { workspace = true }
|
2023-01-27 03:09:09 +03:00
|
|
|
regex = { workspace = true }
|
2023-11-23 23:19:31 +03:00
|
|
|
reqwest = { workspace = true }
|
2023-05-08 17:13:53 +03:00
|
|
|
semver = { workspace = true }
|
2023-11-23 23:19:31 +03:00
|
|
|
serde = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
serde_json = { workspace = true }
|
2023-01-27 03:09:09 +03:00
|
|
|
serde_yaml = { workspace = true }
|
2024-08-14 02:16:55 +03:00
|
|
|
sha2 = { workspace = true }
|
2023-07-24 22:58:53 +03:00
|
|
|
strum = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
symlink = "0.1.0"
|
2023-11-23 23:19:31 +03:00
|
|
|
sysinfo = { workspace = true }
|
2024-05-07 19:22:11 +03:00
|
|
|
tar = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
tempfile = "3.2.0"
|
|
|
|
tokio = { workspace = true }
|
2023-04-06 02:52:16 +03:00
|
|
|
tokio-stream = { workspace = true }
|
2022-12-15 22:29:00 +03:00
|
|
|
tokio-util = { workspace = true }
|
2024-05-07 19:22:11 +03:00
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
unicase = "2.6.0"
|
|
|
|
url = "2.2.2"
|
|
|
|
uuid = { version = "1.1.0", features = ["v4", "serde"] }
|
2024-05-07 19:22:11 +03:00
|
|
|
walkdir = { workspace = true }
|
|
|
|
which = "5.0.0"
|
2022-11-15 16:09:39 +03:00
|
|
|
zip = { version = "0.6.2", default-features = false, features = ["deflate"] }
|
2024-05-07 19:22:11 +03:00
|
|
|
base64 = "0.21.0"
|
2022-10-11 00:38:48 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wiremock = "0.5.10"
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|