mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 12:42:16 +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.
41 lines
980 B
TOML
41 lines
980 B
TOML
[package]
|
|
name = "enso-install"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
dirs = { workspace = true }
|
|
enso-install-config = { path = "config" }
|
|
ide-ci = { path = "../ci_utils" }
|
|
named-lock = "0.4.1"
|
|
serde_json = { workspace = true }
|
|
strum = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
windows = { version = "0.53.0", features = [
|
|
"Win32",
|
|
"Win32_UI",
|
|
"Win32_UI_Shell",
|
|
"Win32_System",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_Foundation",
|
|
"Win32_System_Com",
|
|
] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
mslnk = "0.1.8"
|
|
native-windows-gui = { workspace = true }
|
|
winreg = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
embed-resource = "2.4.0"
|
|
ide-ci = { path = "../ci_utils" }
|
|
enso-install-config = { path = "config" }
|
|
|
|
[lints]
|
|
workspace = true
|