-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
47 lines (37 loc) · 1.19 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
[package]
name = "libkrime"
version = "0.1.0"
edition = "2021"
authors = [
"William Brown <william@blackhats.net.au>",
]
rust-version = "1.77"
license = "MPL-2.0"
homepage = "https://github.com/Firstyear/libkrimes"
repository = "https://github.com/Firstyear/libkrimes"
[dependencies]
bytes = "^1.1.0"
clap = { version = "4.1", features = ["derive", "env"] }
futures = "^0.3.21"
hex = { version = "0.4.3", features = ["serde"] }
num_enum = "^0.5.11"
tokio = { version = "1", features = ["macros", "rt", "net", "io-util"] }
tokio-util = { version = "^0.7.1", features = ["codec"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
# der = { version = "0.7.9", features = ["alloc", "derive"] }
der = { git = "https://github.com/scabrero/formats.git", branch="der-tag-generalstring", features = ["alloc", "derive", "flagset", "std"] }
# Cryptographic Libraries from the rust-crypto project
aes = "0.8.4"
cbc = "0.1.2"
hmac = "0.12.1"
pbkdf2 = "0.12.2"
rand = "0.8.5"
sha1 = "0.10.6"
binrw = "0.14.0"
toml = "^0.5.11"
serde = { version = "^1.0.204", features = ["derive"] }
assert_hex = "0.4.1"
[dev-dependencies]
base64 = "0.22.0"
clap = { version = "^4.5.8", features = ["derive"] }