-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 778 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 778 Bytes
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
[package]
name = "lib-identity"
version = "0.1.0"
edition = "2021"
description = "ZHTP Identity Management - Zero-knowledge identity system with quantum-resistant cryptography and complete citizen onboarding"
[lib]
name = "lib_identity"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
rand = "0.8"
zeroize = { version = "1.6", features = ["derive"] }
hex = "0.4"
blake3 = "1.4"
tracing = "0.1"
bincode = "1.3"
md5 = "0.7"
sha2 = "0.10"
names = { version = "0.14", default-features = false }
lib-crypto = { path = "../lib-crypto" }
lib-proofs = { path = "../lib-proofs" }
[dev-dependencies]
tokio-test = "0.4"
[features]
default = []
browser-compat = []