2022-11-21 18:29:16 -06:00
|
|
|
[package]
|
2022-11-23 08:30:24 -06:00
|
|
|
name = "lanzatool"
|
2022-11-21 18:29:16 -06:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.66"
|
|
|
|
clap = { version = "4.0.26", features = ["derive"] }
|
2022-11-23 08:26:26 -06:00
|
|
|
goblin = "0.6.0"
|
2022-11-25 16:57:56 -06:00
|
|
|
nix = { version = "0.25.0", default-features = false, features = [ "fs" ] }
|
2022-12-17 16:55:38 -06:00
|
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
2022-11-23 08:26:26 -06:00
|
|
|
serde_json = "1.0.89"
|
2022-11-25 08:15:58 -06:00
|
|
|
tempfile = "3.3.0"
|
2022-11-27 19:23:43 -06:00
|
|
|
blake3 = "1.3.3"
|
2022-12-17 16:55:38 -06:00
|
|
|
# TODO: wait for a upstream release and pin it.
|
2022-12-22 18:03:32 -06:00
|
|
|
bootspec = { git = "https://github.com/DeterminateSystems/bootspec" }
|
2022-12-11 19:09:04 -06:00
|
|
|
walkdir = "2.3.2"
|
2022-12-29 18:41:20 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_cmd = "2.0.7"
|
2022-12-29 18:41:48 -06:00
|
|
|
rand = "0.8.5"
|