lanzaboote/rust/tool/Cargo.toml

34 lines
871 B
TOML
Raw Normal View History

2022-11-21 19:29:16 -05:00
[package]
name = "lanzaboote_tool"
2022-11-21 19:29:16 -05:00
version = "0.1.0"
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]
anyhow = "1.0.66"
clap = { version = "4.0.26", features = ["derive"] }
2022-11-23 09:26:26 -05:00
goblin = "0.6.0"
nix = { version = "0.25.0", default-features = false, features = [ "fs" ] }
serde = { version = "1.0.151", features = ["derive"] }
2022-11-23 09:26:26 -05:00
serde_json = "1.0.89"
tempfile = "3.3.0"
# TODO: wait for a upstream release and pin it.
bootspec = { git = "https://github.com/DeterminateSystems/bootspec" }
2022-12-11 20:09:04 -05:00
walkdir = "2.3.2"
2023-01-01 19:54:57 -05:00
time = "0.3.17"
sha2 = "0.10.6"
# Keep the fastrand version aligned with the one from tempfile to avoid two
# different versions.
fastrand = "1.6.0"
[dev-dependencies]
assert_cmd = "2.0.7"
2023-01-01 19:54:57 -05:00
expect-test = "1.4.0"
filetime = "0.2.19"
2022-12-29 19:41:48 -05:00
rand = "0.8.5"