-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (29 loc) · 1.19 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"utils",
"recipes",
"ingredients/*"
]
[workspace.dependencies]
# Solana dependencies
solana-sdk = "2.1.11"
solana-client = "2.1.11"
solana-transaction-status-client-types = "2.1.11"
solana-zk-sdk = "2.1.11"
# SPL dependencies
spl-token-2022 = { git = "https://github.com/kilogold/token-2022.git", branch = "cli_transaction_generation" }
spl-token-client = { git = "https://github.com/kilogold/token-2022.git", branch = "cli_transaction_generation" }
spl-associated-token-account = { git = "https://github.com/solana-labs/solana-program-library.git", rev = "224a96b164357a221c7f7dae5e348f9c0f7a73da" }
spl-token-confidential-transfer-proof-generation = { git = "https://github.com/kilogold/token-2022.git", branch = "cli_transaction_generation" }
spl-token-confidential-transfer-proof-extraction = { git = "https://github.com/kilogold/token-2022.git", branch = "cli_transaction_generation" }
# Other dependencies
tk-rs = { git = "https://github.com/kilogold/tk-rs.git" }
tokio = { version = "1.42.0", features = ["full"] }
serde = "1.0.215"
serde_json = "1.0.1"
bs58 = "0.5.1"
dotenvy = "0.15.7"
google-cloud-kms = "0.6.0"
base64 = "0.22.1"
jito-sdk-rust = "0.1.0"