-
Notifications
You must be signed in to change notification settings - Fork 83
/
Cargo.toml
33 lines (30 loc) · 1.06 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
[package]
name = "aries_vcx_wallet"
version.workspace = true
authors.workspace = true
description.workspace = true
license.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
vdrtools_wallet = ["dep:libvdrtools", "dep:indy-api-types"]
askar_wallet = ["dep:aries-askar"]
[dependencies]
anyhow = "1.0"
aries-askar = { workspace = true, optional = true }
async-trait = "0.1.68"
bs58 = { version = "0.5" }
base64 = "0.22.1"
libvdrtools = { path = "../misc/legacy/libvdrtools", optional = true }
log = "0.4.17"
indy-api-types = { path = "../misc/legacy/libvdrtools/indy-api-types", optional = true }
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
public_key = { path = "../../did_core/public_key" }
rand = "0.8.5"
thiserror = "1.0.40"
tokio = { version = "1.38" }
typed-builder = "0.19.1"
uuid = { version = "1.3.0", default-features = false, features = ["v4"] }
[dev-dependencies]
tokio = { version = "1.38", features = ["rt", "macros", "rt-multi-thread"] }