-
Notifications
You must be signed in to change notification settings - Fork 83
/
Cargo.toml
39 lines (36 loc) · 1.02 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
[package]
name = "did_cheqd"
authors.workspace = true
description.workspace = true
license.workspace = true
version = "0.1.0"
edition = "2021"
[lib]
name = "did_cheqd"
path = "src/lib.rs"
[dependencies]
did_resolver = { path = "../../did_resolver" }
tonic = { version = "0.12.3", default-features = false, features = [
"codegen",
"prost",
"channel",
] }
prost = { version = "0.13.3", default-features = false }
prost-types = "0.13.3"
native-tls = { version = "0.2.12", features = ["alpn"] }
hyper-tls = "0.6.0"
hyper-util = { version = "0.1.10", features = ["client-legacy", "http2"] }
http-body-util = "0.1.2"
async-trait = "0.1.68"
serde_json = "1.0.96"
serde = { version = "1.0.160", features = ["derive"] }
thiserror = "1.0.40"
tokio = { version = "1.38.0" }
chrono = { version = "0.4.24", default-features = false, features = ["now"] }
url = { version = "2.3.1", default-features = false }
bytes = "1.8.0"
[dev-dependencies]
tokio = { version = "1.38.0", default-features = false, features = [
"macros",
"rt",
] }