-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (86 loc) · 2.16 KB
/
Cargo.toml
File metadata and controls
104 lines (86 loc) · 2.16 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
[workspace]
members = [
"aa-types",
"aa-core",
"core",
"eip7702-core",
"executors",
"server",
"solana-core",
"thirdweb-core",
"twmq",
"integration-tests",
]
resolver = "2"
[workspace.dependencies]
# Alloy and related
alloy = { version = "1.0.36" }
alloy-signer-aws = { version = "1.0.23" }
# Vault
vault-types = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "main" }
vault-sdk = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.git", branch = "main" }
# Solana
solana-sdk = "3.0"
solana-client = "3.0"
solana-transaction-status = "3.0"
solana-connection-cache = "3.0"
solana-commitment-config = "3.0"
solana-compute-budget-interface = "3.0"
solana-system-interface = { version = "2.0", features = ["bincode"] }
spl-memo-interface = "2.0"
spl-token-2022-interface = "2.1"
# AWS
aws-config = "1.8.2"
aws-sdk-kms = "1.79.0"
aws-credential-types = "1.2.4"
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_with = "3.14.0"
serde-bool = "0.1.3"
serde_repr = "0.1.20"
bincode = { version = "2.0.1", features = ["serde"] }
# Error handling
thiserror = "2.0.12"
anyhow = "1.0.98"
# Logging and tracing
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19" }
# Async runtime
tokio = { version = "1.45.0" }
futures = "0.3.31"
# API documentation
utoipa = { version = "5.4.0" }
utoipa-axum = "0.2.0"
utoipa-scalar = { version = "0.3.0" }
schemars = "0.8.22"
aide = { version = "0.14.2" }
# Web framework
axum = { version = "0.8.4" }
tower = "0.5.2"
tower-http = { version = "0.6.2" }
# Caching
moka = { version = "0.12.10", features = ["future"] }
# Utilities
uuid = { version = "1.17.0", features = ["v4"] }
rand = "0.9.1"
chrono = "0.4.41"
base64 = "0.22.1"
hex = "0.4.3"
url = "2.5.4"
nanoid = "0.4.0"
# HTTP client
reqwest = "0.12.18"
# Cryptography
hmac = "0.12.1"
sha2 = "0.10.9"
# Metrics
prometheus = "0.13.4"
lazy_static = "1.5.0"
# Configuration
config = "0.15.11"
aws-arn = "0.3.1"
# Redis
redis = { version = "0.31.0", features = ["tokio-comp", "connection-manager"] }
# Dev dependencies
criterion = { version = "0.6", features = ["html_reports", "async_tokio"] }