2022-10-11 00:38:48 +03:00
|
|
|
[package]
|
|
|
|
name = "enso-build-cli"
|
|
|
|
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 }
|
|
|
|
byte-unit = { workspace = true }
|
2022-12-21 07:35:42 +03:00
|
|
|
clap = { version = "3.2.23", features = ["derive", "env", "wrap_help"] }
|
2022-10-11 00:38:48 +03:00
|
|
|
chrono = "0.4.19"
|
2023-01-28 01:39:37 +03:00
|
|
|
derivative = { workspace = true }
|
2022-11-09 02:15:26 +03:00
|
|
|
enso-build-base = { path = "../base" }
|
2022-10-11 00:38:48 +03:00
|
|
|
enso-build = { path = "../build" }
|
|
|
|
enso-formatter = { path = "../enso-formatter" }
|
2023-05-23 13:22:53 +03:00
|
|
|
ensogl-pack = { path = "../../lib/rust/ensogl/pack" }
|
2023-01-28 01:39:37 +03:00
|
|
|
futures = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
futures-util = "0.3.17"
|
|
|
|
glob = "0.3.0"
|
|
|
|
humantime = "2.1.0"
|
|
|
|
ide-ci = { path = "../ci_utils" }
|
2023-01-27 03:09:09 +03:00
|
|
|
octocrab = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
2023-01-28 01:39:37 +03:00
|
|
|
serde_json = { workspace = true }
|
2023-01-27 03:09:09 +03:00
|
|
|
serde_yaml = { workspace = true }
|
2023-07-24 22:58:53 +03:00
|
|
|
strum = { workspace = true }
|
2022-10-11 00:38:48 +03:00
|
|
|
tempfile = "3.2.0"
|
|
|
|
tokio = { workspace = true }
|
|
|
|
toml = "0.5.9"
|
2022-11-03 10:35:06 +03:00
|
|
|
tracing = { version = "0.1.37" }
|
2022-10-11 00:38:48 +03:00
|
|
|
tracing-subscriber = "0.3.11"
|