mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 16:32:18 +03:00
f14b79f8cf
Updated rust version, removed some unnecessary or problematic dependencies. Ported some changes from bazel branch.
30 lines
691 B
TOML
30 lines
691 B
TOML
[package]
|
|
name = "enso-installer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bytesize = "1.3.0"
|
|
chrono = { workspace = true }
|
|
enso-install = { path = ".." }
|
|
enso-install-config = { path = "../config" }
|
|
flate2 = { workspace = true }
|
|
ide-ci = { path = "../../ci_utils" }
|
|
serde_json = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
tar = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
native-windows-gui = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
embed-resource = "2.4.0"
|
|
ide-ci = { path = "../../ci_utils" }
|
|
enso-install-config = { path = "../config" }
|
|
flate2 = { workspace = true }
|
|
tar = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|