-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (56 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
65 lines (56 loc) · 1.49 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
[package]
name = "tests"
version = { workspace = true }
edition = { workspace = true }
[[bin]]
name = "setup_test_env"
path = "src/bin/setup_test_env.rs"
[[test]]
name = "rpc"
path = "rpc/main.rs"
[[test]]
name = "tokens"
path = "tokens/main.rs"
[[test]]
name = "auth"
path = "auth/main.rs"
[[test]]
name = "multi_signer"
path = "multi_signer/main.rs"
[[test]]
name = "external"
path = "external/main.rs"
[[test]]
name = "payment_address"
path = "payment_address/main.rs"
[dependencies]
kora-lib = { path = "../crates/lib" }
solana-sdk = { workspace = true }
solana-commitment-config = { workspace = true }
solana-message = { workspace = true }
solana-system-interface = { workspace = true }
solana-client = { workspace = true }
spl-token = { workspace = true }
spl-token-2022 = { workspace = true }
spl-associated-token-account = { workspace = true }
spl-transfer-hook-interface = { version = "0.10.0" }
solana-compute-budget-interface = "2.2.2"
bincode = { workspace = true }
bs58 = { workspace = true }
dotenv = { workspace = true }
jsonrpsee = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
hex = { workspace = true }
hmac = { workspace = true }
sha2 = { workspace = true }
reqwest = { workspace = true }
futures = { workspace = true }
anyhow = { workspace = true }
once_cell = "1.21.3"
clap = { workspace = true }
toml = { workspace = true }
solana-address-lookup-table-interface = { workspace = true }
colored = "3.0"
serde = { workspace = true }
base64 = { workspace = true }