-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "hdk-cli"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "hdk"
path = "src/main.rs"
[features]
rayon = ["dep:rayon"]
memmap2 = ["dep:memmap2"]
isal = ["hdk-archive/isal"]
[dependencies]
hdk-firmware = { git = "https://github.com/ZephyrCodesStuff/hdk-rs", branch = "main" }
hdk-archive = { git = "https://github.com/ZephyrCodesStuff/hdk-rs", branch = "main", features = [
"cloudflare_zlib",
] }
hdk-sdat = { git = "https://github.com/ZephyrCodesStuff/hdk-rs", branch = "main" }
hdk-secure = { git = "https://github.com/ZephyrCodesStuff/hdk-rs", branch = "main" }
hdk-comp = { git = "https://github.com/ZephyrCodesStuff/hdk-rs", branch = "main" }
clap = { version = "4.5.53", features = ["derive"] }
enum_dispatch = "0.3"
walkdir = "2.5.0"
dialoguer = "0.12.0"
entropy = "0.4.3"
infer = "0.19.0"
sha1_smol = "1.0.1"
ctr = "0.9.2"
hex = "0.4.3"
binrw = "0.15.0"
rand = "0.10.0"
rayon = { version = "1.11.0", optional = true }
memmap2 = { version = "0.9.10", optional = true }
smallvec = "1.15.1"
[dev-dependencies]
criterion = "0.8.2"
[[bench]]
name = "repack-roundtrip"
harness = false