-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
42 lines (37 loc) · 946 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
42
[package]
name = "did-key"
version = "0.2.1"
authors = ["Tomislav Markovski <[email protected]>", "Allison Bellows <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "Implementation of the did:key method"
homepage = "https://github.com/decentralized-identity/did-key.rs"
repository = "https://github.com/decentralized-identity/did-key.rs"
readme = "README.md"
[lib]
crate-type = [ "lib", "cdylib", "staticlib" ]
[dependencies]
ed25519-dalek = "1.0.1"
x25519-dalek = "1.1.0"
curve25519-dalek = "3.0.0"
bs58 = "0.4.0"
sha2 = "0.9"
getrandom = { version = "0.2", features = ["js"] }
hkdf = "0.11"
arrayref = "0.3"
did_url = "0.1.0"
serde = "1.0"
serde_json = "1.0"
base64 = "0.13"
libsecp256k1 = "0.7.1"
bls12_381_plus = "0.7"
json-patch = "0.2.6"
[dependencies.p256]
version = "0.11.1"
features = ["ecdsa", "ecdh"]
[dev-dependencies]
criterion = "0.3"
fluid = "0.4"
[[bench]]
name = "my_benchmark"
harness = false