-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (82 loc) · 2.32 KB
/
Cargo.toml
File metadata and controls
86 lines (82 loc) · 2.32 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
[workspace]
members = ["crates/lib", "crates/cli", "tests"]
resolver = "2"
[workspace.lints.rust]
unused_imports = "deny"
dead_code = "warn"
unused_variables = "warn"
deprecated = "warn"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
module_inception = { level = "allow", priority = 0 }
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/solana-foundation/kora"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0.95"
thiserror = "1.0"
progenitor = "0.8.0"
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
config = "0.13"
dotenv = "0.15"
jsonrpsee = { version = "0.16.2", features = [
"server",
"macros",
"http-client",
"client",
] }
solana-sdk = "2.1.9"
solana-commitment-config = "2.1.9"
solana-message = "2.1.9"
solana-system-interface = "1.0.0"
solana-transaction-status-client-types = "2.1.9"
solana-transaction-status = "2.1.9"
solana-address-lookup-table-interface = "2.2.2"
solana-program = "2.1.9"
solana-client = "2.1.9"
bs58 = "0.5.1"
bincode = "1.3.3"
borsh = "1.5.3"
async-std = "1.13.0"
jsonrpsee-core = { version = "0.16.2", features = ["server"] }
env_logger = "0.11.5"
async-trait = "0.1.89"
base64 = "0.22.1"
log = "0.4.22"
bytes = "1.9.0"
reqwest = { version = "0.12.9", features = ["json", "blocking", "native-tls"] }
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.3.5", features = ["full", "cors"] }
clap = { version = "4.4", features = ["derive", "env"] }
tokio = { version = "1.41.1", features = ["full"] }
prettyplease = "0.2.25"
syn = "2.0.89"
parking_lot = "0.12"
once_cell = "1.20.2"
futures-util = "0.3.31"
hyper = "1.5.1"
http = "0.2"
jup-ag = "0.8.0"
toml = "0.8.19"
spl-token = { version = "7.0.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "8.0.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "6.0.0", features = [
"no-entrypoint",
] }
chrono = "0.4.39"
hex = "0.4.3"
p256 = "0.13.3"
redis = { version = "0.32.5", features = ["tokio-comp", "connection-manager"] }
deadpool-redis = "0.22.0"
vaultrs = "0.7.3"
utoipa = { version = "4.2.0", features = ["yaml", "chrono"] }
hmac = "0.12.1"
sha2 = "0.10.9"
prometheus = "0.14.0"
http-body-util = "0.1.3"