-
Notifications
You must be signed in to change notification settings - Fork 83
/
Cargo.toml
33 lines (30 loc) · 927 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
[package]
name = "did_peer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
did_parser_nom = { path = "../../did_parser_nom" }
did_doc = { path = "../../did_doc" }
did_resolver = { path = "../../did_resolver" }
public_key = { path = "../../public_key" }
thiserror = "1.0.40"
regex = "1.8.4"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
async-trait = "0.1.68"
base64 = "0.22.1"
bs58 = "0.5.0"
multibase = "0.9.1"
unsigned-varint = "0.8.0"
once_cell = "1.18.0"
sha2 = "0.10.8"
log = "0.4.16"
url = { version = "2.3.1", features = ["serde"] }
display_as_json = { path = "../../../misc/display_as_json" }
typed-builder = "0.19.1"
[dev-dependencies]
tokio = { version = "1.38.0", default-features = false, features = ["macros", "rt"] }
pretty_assertions = "1.4.0"
env_logger = "0.11.3"
log = "0.4"