mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-15 21:00:03 +02:00
38 lines
860 B
TOML
38 lines
860 B
TOML
[package]
|
|
name = "unixtract"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
description = "Firmware extractor for various file formats from TVs and AV devices"
|
|
license = "GPL-3.0"
|
|
repository = "https://github.com/Ap0dexMe0/unixtract"
|
|
|
|
[features]
|
|
default = ["zstd"]
|
|
zstd = ["dep:zstd"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
lz4 = "1.28.1"
|
|
lzma-rs = "0.3"
|
|
aes = "0.8.4"
|
|
cbc = "0.1.2"
|
|
md5 = "0.8"
|
|
sha1 = "0.10.6"
|
|
flate2 = "1.1.5"
|
|
rsa = { version = "0.9.10", features = ["hazmat"] }
|
|
hex = "0.4.3"
|
|
ecb = "0.1.2"
|
|
tar = "0.4.44"
|
|
binrw = "0.15"
|
|
simd-adler32 = "*"
|
|
minilzo-rs = "0.6.1"
|
|
prost = "0.14.1"
|
|
prost-types = "0.14.1"
|
|
bzip2 = "0.6.1"
|
|
liblzma = "0.4.5"
|
|
des = "0.8.1"
|
|
sevenz-rust2 = { version = "0.21", default-features = false, features = ["util"] }
|
|
zstd = { version = "0.13.3", optional = true }
|
|
thiserror = "2.0"
|
|
log = "0.4"
|
|
env_logger = "0.11" |