lanzaboote/rust/tool/Cargo.toml

36 lines
940 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]
2023-03-20 05:25:02 -04:00
anyhow = "1.0.70"
clap = { version = "4.2.4", 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-04-16 21:25:18 -04:00
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
2023-04-09 16:27:07 -04:00
tempfile = "3.5.0"
# TODO: wait for a upstream release and pin it.
bootspec = { git = "https://github.com/DeterminateSystems/bootspec" }
2023-03-20 05:25:02 -04:00
walkdir = "2.3.3"
2023-02-26 21:01:48 -05:00
time = "0.3.20"
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.17", features = ["std"] }
stderrlog = "0.5.4"
[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"