-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
41 lines (38 loc) · 890 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "credx"
version = "0.2.0"
edition = "2021"
# NOTE: Please keep dependencies sorted alphabetically.
[dependencies]
base64 = "0.22"
blsful = "3.0.0-pre8"
bulletproofs = { version = "4.0.0", git = "https://github.com/cryptidtech/bulletproofs" }
chrono = "0.4"
elliptic-curve = { version = "0.13", features = ["hash2curve"] }
elliptic-curve-tools = "0.1"
hex = "0.4"
indexmap = "2"
log = "0.4"
merlin = "3"
maplit = "1"
rand = "0.8"
rand_chacha = "0.3"
rand_core = "0.6"
regex = "1"
rmp-serde = "1.3"
serde = { version = "1", features = ["serde_derive"] }
serde_bare = "0.5"
serde_json = "1"
serde_regex = "1"
sha2 = "0.10"
sha3 = "0.10"
subtle = "2.6"
uint-zigzag = { version = "0.2", features = ["std"] }
uuid = {version = "1.11", features = ["v4"]}
zeroize = "1"
[dev-dependencies]
lazy_static = "1.5.0"
maplit = "1"
serde_cbor = "0.11"
sha2 = "0.10"
env_logger = "0.11"