forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 789 Bytes
/
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
[package]
name = "mc-crypto-noise"
version = "5.1.1"
authors = ["MobileCoin"]
edition = "2021"
license = "Apache-2.0"
rust-version = { workspace = true }
[dependencies]
mc-crypto-keys = { path = "../../crypto/keys", default-features = false }
mc-util-from-random = { path = "../../util/from-random" }
aead = "0.5"
aes-gcm = "0.10.3"
digest = "0.10"
displaydoc = { version = "0.2", default-features = false }
generic-array = { version = "0.14", features = ["serde"] }
hkdf = "0.12.3"
rand_core = "0.6"
secrecy = "0.8"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
sha2 = { version = "0.10", default-features = false }
subtle = { version = "2.4.1", default-features = false, features = ["i128"] }
zeroize = "1.7"
[dev-dependencies]
rand_hc = "0.3"