-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathCargo.toml
29 lines (26 loc) · 916 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
[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.workspace = true
regex.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
async-trait.workspace = true
base64.workspace = true
multibase.workspace = true
sha2.workspace = true
log.workspace = true
url = { workspace = true, features = ["serde"] }
display_as_json = { path = "../../../misc/display_as_json" }
typed-builder.workspace = true
[dev-dependencies]
tokio = { workspace = true, default-features = false, features = ["macros", "rt"] }
pretty_assertions.workspace = true
env_logger.workspace = true