mirror of
https://github.com/enso-org/enso.git
synced 2024-12-24 04:24:01 +03:00
96d17d2f3f
Now that the clap has fixed [issue](https://github.com/clap-rs/clap/issues/5407) that blocked us, we can bump it across all our crates. Fixes #5168.
28 lines
707 B
TOML
28 lines
707 B
TOML
[package]
|
|
name = "enso-build-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "enso-build-cli"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
byte-unit = { workspace = true }
|
|
clap = { workspace = true }
|
|
derivative = { workspace = true }
|
|
enso-build-base = { path = "../base" }
|
|
enso-build = { path = "../build" }
|
|
enso-formatter = { path = "../enso-formatter" }
|
|
futures-util = "0.3.17"
|
|
glob = "0.3.0"
|
|
humantime = "2.1.0"
|
|
ide-ci = { path = "../ci_utils" }
|
|
octocrab = { workspace = true }
|
|
tempfile = "3.2.0"
|
|
tokio = { workspace = true }
|
|
toml = "0.5.9"
|
|
tracing = { version = "0.1.37" }
|
|
|
|
[lints]
|
|
workspace = true
|