-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (95 loc) · 3.34 KB
/
Copy pathCargo.toml
File metadata and controls
100 lines (95 loc) · 3.34 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
[workspace]
members = ["crates/lib", "crates/cli", "crates/kora-deploy", "tests", "examples/devnet-deploy-paymaster"]
default-members = ["crates/lib", "crates/cli", "tests"]
resolver = "2"
[profile.dev]
debug = "line-tables-only"
[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 = "2.2.0-beta.8"
edition = "2021"
license = "MIT"
repository = "https://github.com/solana-foundation/kora"
[workspace.dependencies]
url = "2"
kora-lib = { path = "crates/lib", version = "2.2.0-beta.8" }
kora-deploy = { path = "crates/kora-deploy", version = "0.2.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0.102"
thiserror = "2.0"
progenitor = "0.8.0"
futures = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
config = "0.15"
dotenv = "0.15"
jsonrpsee = { version = "0.16.2", features = [
"server",
"macros",
"http-client",
"client",
] }
solana-sdk = "4.0.1"
solana-commitment-config = "3.1.1"
# The 4.2.1 client stack requires wincode 0.5 and bounds message <4.5 / transaction <4.2;
# the upper bounds here exclude the wincode-0.6 releases until upstream moves.
# solana-sdk is exact-pinned by solana-keychain sdk-v4.
solana-message = { version = ">=4.4.0,<4.5", features = ["wincode"] }
solana-transaction = { version = ">=4.1.1,<4.2", features = ["wincode"] }
wincode = "0.5"
solana-system-interface = "2.0.0"
solana-transaction-status-client-types = "4.2.1"
solana-transaction-status = { version = "4.2.1", features = ["agave-unstable-api"] }
solana-address-lookup-table-interface = "3.0.0"
solana-loader-v3-interface = { version = "6.1.0", features = ["bincode", "serde"] }
solana-loader-v4-interface = { version = "3.1.0", features = ["bincode", "serde"] }
solana-program = ">=4.0.0,<4.1"
solana-program-pack = "3.1.0"
solana-compute-budget-interface = { version = "3.0.0", features = ["borsh"] }
solana-compute-budget = { version = "4.2.1", features = ["agave-unstable-api"] }
solana-client = "4.2.1"
solana-nonce = "3.0.0"
bs58 = "0.5.1"
bincode = "1.3.3"
borsh = "1.6.1"
async-std = "1.13.0"
async-trait = "0.1.89"
base64 = "0.22.1"
log = "0.4.22"
bytes = "1.11.1"
reqwest = { version = "0.13.2", features = ["json", "blocking"] }
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.3.5", features = ["full", "cors"] }
clap = { version = "4.6", features = ["derive", "env"] }
tokio = { version = "1.50.0", features = ["full"] }
tokio-util = { version = "0.7.16", features = ["rt"] }
prettyplease = "0.2.25"
syn = "2.0.89"
parking_lot = "0.12"
once_cell = "1.21.4"
futures-util = "0.3.32"
http = "0.2"
toml = "1.1.2"
spl-token-interface = { version = "3.0.0" }
spl-token-2022-interface = { version = "2.1.0" }
spl-token-metadata-interface = { version = "0.8.0" }
spl-token-group-interface = { version = "0.7.1" }
spl-associated-token-account-interface = { version = "2.0.0" }
chrono = "0.4.44"
hex = "0.4.3"
redis = { version = "1.0.2", features = ["tokio-comp", "connection-manager"] }
deadpool-redis = "0.23.0"
utoipa = { version = "5.5.0", features = ["yaml", "chrono"] }
hmac = "0.13.0"
sha2 = "0.11.0"
prometheus = "0.14.0"
subtle = "2.6.1"
rust_decimal = "1.42"
rust_decimal_macros = "1.40"