lanzaboote/rust/tool/Cargo.toml

36 lines
939 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-02-26 21:01:48 -05:00
anyhow = "1.0.69"
clap = { version = "4.1.6", features = ["derive"] }
goblin = "0.6.1"
nix = { version = "0.26.2", default-features = false, features = [ "fs" ] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
tempfile = "3.4.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-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-02-26 21:01:48 -05:00
assert_cmd = "2.0.8"
2023-01-01 19:54:57 -05:00
expect-test = "1.4.0"
2023-02-26 21:01:48 -05:00
filetime = "0.2.20"
2022-12-29 19:41:48 -05:00
rand = "0.8.5"