forked from sicpa-dlab/didcomm-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
80 lines (64 loc) · 1.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[[bench]]
name = 'pack_signed'
harness = false
[[bench]]
name = 'pack_encrypted'
harness = false
[[example]]
name = 'attachments'
[[example]]
name = 'advanced_params'
[[example]]
name = 'basic'
[[example]]
name = 'rotate_did'
[[example]]
name = 'routing'
[package]
name = 'didcomm'
version = '0.3.4'
authors = ['Vyacheslav Gudkov <[email protected]>']
edition = '2018'
description = 'DIDComm for Rust'
license = 'Apache-2.0'
repository = 'https://github.com/sicpa-dlab/didcomm-rust'
readme = 'README.md'
[dependencies]
anyhow = '1.0'
base64 = '0.13'
async-trait = '0.1'
thiserror = '1.0'
serde_json = '1.0'
serde-enum-str = '0.1'
sha2 = '0.9'
bs58 = "0.4.0"
varint = "0.9.0"
lazy_static = { version = "1.4.0", optional = true }
[dependencies.serde]
version = '1.0'
features = ['derive']
[dependencies.askar-crypto]
version = '0.2'
features = ['std']
git = 'https://github.com/hyperledger/aries-askar'
rev = '4f29d43d584c4a1f1f982c4511824421aeccd2db'
[dependencies.uuid]
version = "0.8"
features = ["v4"]
[dev-dependencies]
lazy_static = '1.4.0'
[dev-dependencies.tokio]
version = '1.9'
features = [
'rt',
'macros',
]
[dev-dependencies.getrandom]
version = '0.2'
features = ['js']
[dev-dependencies.criterion]
version = '0.3'
features = ['async_futures']
[features]
uniffi = []
testvectors = ["lazy_static"]