mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 08:21:49 +03:00
b76e4d678d
This PR removes unused, commented-out or otherwise spurious code from build script. Also, dependencies were reviewed and cleaned. No functional changes intended.
23 lines
603 B
TOML
23 lines
603 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 }
|
|
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"
|
|
ide-ci = { path = "../ci_utils" }
|
|
octocrab = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|