-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
60 lines (54 loc) · 1.78 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
54
55
56
57
58
59
60
[package]
name = "keri"
version = "0.8.0"
authors = ["Decentralized Identity Foundation", "Charles Cunningham <[email protected]>", "Ivan Temchenko <[email protected]"]
edition = "2018"
description = "Core library for the Key Event Receipt Infrastructure "
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# lmdb = ["rkv", "bincode"] # deprecated since 0.7
sled-db = ["sled", "fixed"]
async = ["async-std", "pin-project", "futures-core", "bitpat"]
wallet = ["universal_wallet"]
default = ["sled-db"]
query = []
[dependencies]
ed25519-dalek = "1.0.1"
k256 = { version = "0.9", features = ["ecdsa", "sha256", "zeroize"] }
blake2 = "0.9.1"
sha2 = "0.9.3"
sha3 = "0.9.1"
rand = { version = "0.7.3", features = ["std", "getrandom"] }
base64 = "0.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_cbor = "0.11.1"
serde_derive = "1.0.106"
thiserror = "1.0"
serde-hex = "0.1"
nom = "5"
itoa = "0.4"
ryu = "1.0"
blake3 = { version = "1", default-features = false }
chrono = { version = "0.4.18", features = ["serde"] }
rmp-serde = "0.15"
arrayref = "0.3.6"
zeroize = "1.3.0"
sled = { version = "0.34.6", optional = true }
fixed = { version = "1.9", optional = true }
fraction = { version = "0.9", features = ["with-serde-support"]}
# Async dependencies
async-std = { version = "1", optional = true }
pin-project = { version = "1", optional = true }
futures-core = { version = "0.3.15", optional = true }
bitpat = { version = "0.1.1", optional = true }
# Wallet dependencies
universal_wallet = { version = "0.5", optional = true}
rkv = { version = "0.17", optional = true }
bincode = { version = "1.3.1", optional = true }
[dev-dependencies]
tempfile = "3.1"
sodiumoxide = "0.2.6"