mirror of
https://github.com/chenxiaolong/avbroot.git
synced 2026-07-03 14:05:11 +02:00
ac95660e23
The performance, both in CPU time and compression ratios, is very comparable to liblzma. This lets us drop the last remaining compression-related dependency written in C. Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "e2e"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
avbroot = { path = "../avbroot" }
|
|
clap = { version = "4.4.1", features = ["derive"] }
|
|
ctrlc = "3.4.0"
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
ring = "0.17.14"
|
|
rsa = { version = "0.9.6", features = ["hazmat"] }
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
tempfile = "3.8.0"
|
|
toml_edit = { version = "0.23.3", features = ["serde"] }
|
|
topological-sort = "0.2.2"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
x509-cert = "0.2.5"
|
|
|
|
# https://github.com/zip-rs/zip2/pull/367
|
|
# https://github.com/zip-rs/zip2/pull/368
|
|
# For getting the data offset when writing new zip entries.
|
|
[dependencies.zip]
|
|
git = "https://github.com/chenxiaolong/zip2"
|
|
rev = "59685f4dadbfee8cb3ea74c8fbb402b60d8137e8"
|
|
default-features = false
|
|
|
|
[lints]
|
|
workspace = true
|