2023-07-22 13:49:46 -05:00
|
|
|
[package]
|
|
|
|
name = "lanzaboote_tool"
|
2023-09-14 05:35:42 -05:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
2023-07-22 13:49:46 -05:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-14 04:04:53 -05:00
|
|
|
anyhow = "1"
|
|
|
|
goblin = "0.7"
|
|
|
|
serde_json = "1"
|
2024-01-02 04:13:03 -06:00
|
|
|
tempfile = "3.9.0"
|
2023-09-14 04:04:53 -05:00
|
|
|
bootspec = "1"
|
|
|
|
walkdir = "2"
|
|
|
|
time = "0.3"
|
|
|
|
sha2 = "0.10"
|
2023-07-22 13:49:46 -05:00
|
|
|
# Keep the fastrand version aligned with the one from tempfile to avoid two
|
|
|
|
# different versions.
|
2023-10-15 20:54:44 -05:00
|
|
|
fastrand = "2.0.1"
|
2023-09-14 04:04:53 -05:00
|
|
|
log = { version = "0.4", features = ["std"] }
|