initrd/Cargo.toml

17 lines
432 B
TOML
Raw Permalink Normal View History

2024-04-29 10:54:25 +00:00
[package]
name = "init"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-06-28 19:54:17 +00:00
anyhow = "1.0.86"
2024-05-14 22:59:57 +00:00
env_logger = "0.11.3"
log = "0.4.21"
2024-04-29 10:54:25 +00:00
serde = { version = "1.0.198", features = ["derive"] }
2024-05-14 22:59:57 +00:00
serde_json = "1.0.116"
2024-04-29 10:54:25 +00:00
serde_yaml = "0.9.34"
2024-06-28 19:54:17 +00:00
shell-escape = "0.1.5"
tokio = { version = "1.38.0", features = ["rt", "signal", "process", "macros"] }