2023-07-22 13:49:46 -05:00
|
|
|
[package]
|
|
|
|
name = "lzbt-systemd"
|
2023-10-29 13:39:53 -05:00
|
|
|
version.workspace = true
|
2023-07-22 13:49:46 -05:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-02 04:13:03 -06:00
|
|
|
anyhow = "1.0.79"
|
2023-08-12 08:23:21 -05:00
|
|
|
base32ct = { version = "0.2.0", features = ["alloc"] }
|
2024-02-04 21:38:46 -06:00
|
|
|
stderrlog = "0.6.0"
|
2023-10-15 20:54:44 -05:00
|
|
|
log = { version = "0.4.20", features = ["std"] }
|
2024-02-11 19:39:49 -06:00
|
|
|
clap = { version = "4.5.0", features = ["derive"] }
|
2023-07-22 13:49:46 -05:00
|
|
|
lanzaboote_tool = { path = "../shared" }
|
2023-10-15 20:54:44 -05:00
|
|
|
indoc = "2.0.4"
|
2024-02-04 21:38:46 -06:00
|
|
|
serde_json = "1.0.113"
|
2023-10-15 20:54:44 -05:00
|
|
|
sha2 = "0.10.8"
|
2024-02-11 19:39:49 -06:00
|
|
|
tempfile = "3.10.0"
|
2023-10-15 20:54:44 -05:00
|
|
|
nix = { version = "0.27.1", default-features = false, features = [ "fs" ] }
|
2023-07-22 13:49:46 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-14 18:17:37 -06:00
|
|
|
assert_cmd = "2.0.13"
|
2023-07-22 13:49:46 -05:00
|
|
|
expect-test = "1.4.1"
|
2023-12-10 18:54:29 -06:00
|
|
|
filetime = "0.2.23"
|
2023-07-22 13:49:46 -05:00
|
|
|
rand = "0.8.5"
|
2023-10-15 20:54:44 -05:00
|
|
|
goblin = "0.7.1"
|
|
|
|
walkdir = "2.4.0"
|