mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 06:32:30 +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.
22 lines
517 B
TOML
22 lines
517 B
TOML
[package]
|
|
name = "enso-uninstaller"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
enso-install = { path = ".." }
|
|
enso-install-config = { path = "../config" }
|
|
ide-ci = { path = "../../ci_utils" }
|
|
self-replace = "1.3.7"
|
|
sysinfo = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
native-windows-gui = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|