mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 22:01:42 +03:00
a4f56e92aa
This PR introduces a new installer and uninstaller for the Windows platform. Both are written in Rust and compiled to a single executable. The executable has no dependencies (other than what is included in the Windows), links the C++ runtime statically if needed. The change is motivated by numerous issues with with the `electron-builder`-generated installers. The new installer should behave better, not have issues with long paths and unblock the `electron-builder` upgrade (which will significantly simplify the workflow definitions). To build an installer, one needs to provide the unpacked application (generated by `electron-builder`) and the `electron-builder` configuration (with a few minor extensions). Code signing is also supported.
28 lines
705 B
TOML
28 lines
705 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 = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|