forked from OpenVTC/openvtc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
106 lines (100 loc) · 3.19 KB
/
Copy pathCargo.toml
File metadata and controls
106 lines (100 loc) · 3.19 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[workspace]
members = [
"openvtc-core",
"openvtc",
"did-git-sign",
]
resolver = "3"
[workspace.package]
description = "Open Verifiable Trust Community (OpenVTC) - First Person Protocol"
version = "0.2.1"
edition = "2024"
publish = false
authors = ["Glenn Gore <glenn@affinidi.com>"]
rust-version = "1.95.0"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/LF-Decentralized-Trust-labs/openvtc"
[workspace.dependencies]
openvtc-core = { version = "0.2", path = "openvtc-core", default-features = false }
# Decentralized Trust Graph Credentials
dtg-credentials = "0.1"
aes-gcm = "0.10"
argon2 = "0.5"
affinidi-tdk = "0.8"
affinidi-data-integrity = "0.7"
affinidi-messaging-didcomm-service = "0.3"
anyhow = "1.0"
# Structure-aware fuzzing support (issue #124). Only pulled in when a crate
# enables its own `arbitrary` feature; the `derive` feature provides the
# `#[derive(arbitrary::Arbitrary)]` proc-macro.
arbitrary = { version = "1", features = ["derive"] }
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
base64 = "0.22"
bip39 = "2.2"
byteorder = "1.5"
chrono = "0.4"
clap = { version = "4.6", features = ["derive"] }
console = "0.16"
crossterm = { version = "0.29", features = ["event-stream"] }
dirs = "6.0"
dialoguer = { version = "0.12", features = ["password"] }
didwebvh-rs = "0.5"
ed25519-dalek-bip32 = "0.3"
hkdf = "0.13"
hex = "0.4"
# keyring split: the library API is now in keyring-core 1.0; platform
# backends ship as separate keyring-store crates that each binary registers
# at startup via keyring_core::set_default_store.
keyring-core = "1"
apple-native-keyring-store = { version = "1", features = ["keychain"] }
linux-keyutils-keyring-store = "1"
windows-native-keyring-store = "1"
multibase = "0.9"
pgp = "0.19"
# Stays on 0.8 until pgp 0.19 / aes-gcm 0.10 / ed25519-dalek-bip32 0.3
# move off rand_core 0.6 — they all sit on the old trait set and rand 0.10
# drops `OsRng`. Our `OsRng` call sites feed those crates directly
# (pgp key gen + encrypt, aes-gcm `generate_nonce`), so they must share the
# crate's RNG trait set. Re-evaluated 2026-06-03: pgp 0.19.0 and
# ed25519-dalek-bip32 0.3.0 are still the latest releases and remain on
# rand_core 0.6; aes-gcm 0.11 (rand_core 0.9) is still only a release
# candidate. Bump together when the crypto stack is refreshed.
rand = "0.8"
ratatui = "0.30"
regex = "1.12"
secrecy = { version = "0.10", features = ["serde"] }
serde = "1.0"
serde_json = "1.0"
serde_json_canonicalizer = "0.3"
sha2 = "0.11"
strum = "0.28"
strum_macros = "0.28"
sysinfo = "0.39"
thiserror = "2.0"
tokio = "1.52"
tokio-stream = "0.1"
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
trust-tasks-rs = "0.2"
tui-input = "0.15"
url = "2.5"
uuid = { version = "1.23", features = ["v4", "fast-rng", "serde"] }
vta-sdk = { version = "0.18", features = [
"session",
"client",
"didcomm",
"provision-client",
] }
reqwest = { version = "0.13", features = ["json"] }
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
zeroize = "1.8"
# Openpgp-Card Support
openpgp-card = "0.6"
card-backend-pcsc = "0.5"
openpgp-card-rpgp = "0.7"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"