-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
69 lines (64 loc) · 1.69 KB
/
Cargo.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "zff"
version = "3.0.0-rc.2"
authors = ["ph0llux <ph0llux@pm.me"]
edition = "2021"
rust-version = "1.67.1"
license = "MIT OR Apache-2.0"
description = "This crate is a library to interact with zff, a file format for forensic images."
readme = "./README.md"
homepage = "https://zff.dev"
repository = "https://github.com/zff-team/zff-rs"
keywords = ["forensics", "security", "acquisition", "file-format", "file"]
publish = true
[lib]
name = "zff"
path = "src/lib/mod.rs"
test = true
bench = true
doc = true
edition = "2021"
crate-type = ["lib"]
[dependencies]
byteorder = "1.4.3"
rand = "0.8.5"
base64 = "0.22.0"
time = { version = "0.3.21" }
itertools = "0.13"
redb = "2.0"
#encryption
pkcs5 = { version = "0.7.1", features = [ "pbes2", "alloc" ] }
rust-argon2 = "2.0"
aes-gcm = "0.10"
chacha20poly1305 = "0.10"
typenum = "1.16.0"
cbc = { version = "0.1.2", features = [ "alloc" ] }
aes = "0.8.3"
#compression
zstd = "0.13"
lz4_flex = "0.11"
ordered-float = "4.2.0"
#Hashing
digest = { version = "0.10.6", features = [ "alloc" ] }
blake3 = { version = "1.3.3", features = [ "traits-preview" ] }
blake2 = "0.10.6"
sha2 = "0.10.6"
sha3 = "0.10.8"
crc32fast = "1.3.2"
crossbeam = "0.8.2"
#signing
ed25519-dalek = { version = "2.0", features = [ "rand_core", "digest" ] }
# optional deps for features
serde = { version = "1.0", features = ["derive"], optional = true }
log = { version = "0.4.6", optional = true }
hex = { version = "0.4.3", optional = true }
# platform specific dependencies
[target.'cfg(target_family = "unix")'.dependencies]
xattr = "1"
posix-acl = "1.1.0"
[features]
default = []
serde = ["dep:serde", "dep:hex", "ordered-float/serde"]
log = ["dep:log", "dep:hex"]
[dev-dependencies]
hex = "0.4.3"