lanzaboote/rust/tool/Cargo.toml

36 lines
855 B
TOML
Raw Normal View History

2022-11-21 19:29:16 -05:00
[package]
name = "lanzaboote_tool"
2023-05-18 13:03:37 -04:00
version = "0.3.0"
2022-11-21 19:29:16 -05:00
edition = "2021"
[[bin]]
name = "lzbt"
path = "src/main.rs"
2022-11-21 19:29:16 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-04-30 22:39:28 -04:00
anyhow = "1.0.71"
2023-05-21 22:56:28 -04:00
clap = { version = "4.3.0", features = ["derive"] }
2023-02-26 21:01:48 -05:00
goblin = "0.6.1"
nix = { version = "0.26.2", default-features = false, features = [ "fs" ] }
2023-05-21 22:56:28 -04:00
serde = { version = "1.0.163", features = ["derive"] }
2023-04-16 21:25:18 -04:00
serde_json = "1.0.96"
2023-04-09 16:27:07 -04:00
tempfile = "3.5.0"
bootspec = "1.0"
2023-03-20 05:25:02 -04:00
walkdir = "2.3.3"
2023-05-07 21:30:03 -04:00
time = "0.3.21"
sha2 = "0.10.6"
# Keep the fastrand version aligned with the one from tempfile to avoid two
# different versions.
2023-02-26 21:01:48 -05:00
fastrand = "1.9.0"
log = { version = "0.4.18", features = ["std"] }
stderrlog = "0.5.4"
indoc = "2.0.1"
[dev-dependencies]
2023-04-16 21:25:18 -04:00
assert_cmd = "2.0.11"
2023-03-12 20:45:02 -04:00
expect-test = "1.4.1"
2023-04-09 16:27:07 -04:00
filetime = "0.2.21"
2022-12-29 19:41:48 -05:00
rand = "0.8.5"