-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 1.18 KB
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
[workspace]
resolver = "3"
members = [
"common",
"issuer",
"person",
"simulations",
"wallet",
]
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/abetterinternet/didemo"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1"
axum = { version = "0.8.4", features = ["macros"] }
clap = { version = "4.5.40", features = ["cargo", "derive", "env"] }
didemo_common = { version = "0.1.0", path = "common" }
didemo_issuer = { version = "0.1.0", path = "issuer" }
didemo_person = { version = "0.1.0", path = "person" }
didemo_wallet = { version = "0.1.0", path = "wallet" }
hex = "0.4.3"
pairing_crypto = { version = "0.4.3", default-features = false, git = "https://github.com/mattrglobal/pairing_crypto", rev = "95443a21f5748901a6116ddc28d70c4ac96af37f" }
reqwest = { version = "0.12.21", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_yaml = "0.9.34"
tokio = { version = "1.45", features = ["full", "tracing"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = [
"json",
"env-filter",
"std",
"fmt",
] }