27 lines
629 B
TOML
27 lines
629 B
TOML
[package]
|
|
name = "init"
|
|
version = "2.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
libc = { version = "0.2", default-features = false }
|
|
env_logger = "0.11.3"
|
|
eyre = "0.6.12"
|
|
itertools = "0.14.0"
|
|
log = "0.4.21"
|
|
nix = { version = "0.30.1", features = ["feature", "reboot"] }
|
|
regex = "1.11.1"
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
|
serde_json = "1.0.116"
|
|
serde_yaml = "0.9.34"
|
|
shell-escape = "0.1.5"
|
|
tokio = { version = "1.38.0", features = ["rt", "net", "fs", "process", "io-std", "io-util", "sync", "macros"] }
|
|
termios = "0.3.3"
|