-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (45 loc) · 2.2 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
[package]
name = "kemri_toy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64ct = { version="1.6.0", features = ["alloc"] }
# EnvelopedDataBuilder is not yet released, hence use of private branch
cms = { version = "0.3.0-pre", features = ["builder"] }
const-oid = { version = "0.10.0-pre.2", default-features = false, features = ["db"] }
der = { version="0.8.0-pre.0", features = ["alloc", "derive", "flagset", "oid"] }
spki = { version = "0.8.0-pre.0", default-features = false, features = ["alloc"] }
x509-cert = { version = "0.3.0-pre", default-features = false, features = ["hazmat", "builder"] }
pqckeys = { git = "https://github.com/carl-wallace/pqckeys", branch = "kemri" }
tari-tiny-keccak = { version = "2.0.2", features = ["kmac"] }
aes = { version = "0.8.3" }
aes-gcm = "0.10.3"
aes-kw = { version = "0.2.1" }
cbc = { version = "0.1.2" }
cipher = { version = "0.4.4", features = ["alloc", "block-padding", "rand_core"] }
hkdf = "0.13.0-pre.4"
rsa = { version = "0.10.0-pre.2", features = ["sha2"] }
sha2 = "0.11.0-pre.4"
signature = "2.3.0-pre.4"
pqcrypto-mldsa = "0.1.0"
pqcrypto-mlkem = "0.1.0"
pqcrypto-traits = "0.3.5"
clap = {version = "4.4.18", features = ["std", "derive"] }
log = "0.4.20"
log4rs = "1.2.0"
rand_core = { version = "0.6.4", features = ["std"] }
rand = "0.8.5"
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
subtle-encoding = {version = "0.5.1", default-features = false, features = ["hex", "alloc"]}
[patch.crates-io]
cms = { git = "https://github.com/RustCrypto/formats.git" }
const-oid = { git = "https://github.com/RustCrypto/formats.git" }
der = { git = "https://github.com/RustCrypto/formats.git" }
der_derive = { git = "https://github.com/RustCrypto/formats.git" }
pkcs1 = { git = "https://github.com/RustCrypto/formats.git" }
pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }
spki = { git = "https://github.com/RustCrypto/formats.git" }
x509-cert = { git = "https://github.com/RustCrypto/formats.git" }
rsa = { git = "https://github.com/RustCrypto/RSA.git" }
sha2 = { git = "https://github.com/RustCrypto/hashes.git" }