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