35 lines
736 B
TOML
35 lines
736 B
TOML
[package]
|
|
name = "syntax_bootstrapper"
|
|
version = "1.3.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
term_size = "0.3.2"
|
|
colored = "2.0.4"
|
|
chrono = "0.4.26"
|
|
dirs = "5.0.1"
|
|
indicatif = "0.17.6"
|
|
reqwest = { version = "0.11.20", features = ["stream"] }
|
|
futures = "0.3.28"
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
futures-util = "0.3.28"
|
|
md5 = "0.7.0"
|
|
zip-extract = "0.1.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.52.0"
|
|
|
|
[build-dependencies]
|
|
chrono = "0.4.26"
|
|
winres = "0.1.12"
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
serde_yaml = "0.9.30"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
opt-level = "z"
|
|
codegen-units = 1
|