forked from igneous-labs/solores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (60 loc) · 1.79 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
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
[workspace]
resolver = "2"
members = [
"examples/anchor/ix_blank/*",
"examples/anchor/ix_no_accounts/*",
"examples/anchor/ix_no_accounts_pubkey_arg/*",
"examples/anchor/ix_no_args/*",
"examples/anchor/ix_no_privilege/*",
"examples/anchor/drift/*",
"examples/anchor/marinade/*",
"examples/anchor/unstake_it/*",
"examples/bincode/stake/*",
"examples/bincode/system/*",
"examples/shank/ix_blank/*",
"examples/shank/ix_no_accounts/*",
"examples/shank/ix_no_accounts_pubkey_arg/*",
"examples/shank/ix_no_args/*",
"examples/shank/ix_no_privilege/*",
"examples/shank/phoenix_v1/*",
"examples/shank/token_metadata/*",
"solores",
"test_utils"
]
[workspace.dependencies]
borsh = "^0.10"
bs58 = ">=0.1"
bytemuck = "^1"
clap = "^4.0.29"
env_logger = "^0.10.0"
heck = "^0.4.0"
itertools = "^0.10"
lazy_static = "^1"
log = "^0.4.17"
log-panics = "^2"
num-derive = "^0.3"
num-traits = "^0.2"
prettyplease = "^0.1.21"
proc-macro2 = "^1.0"
quote = "^1.0"
rand = "^0.8"
serde = "^1"
serde_json = "^1"
sha2 = "^0.10"
solana-cli-config = "^1"
solana-client = "^1"
solana-program = "^1"
solana-sdk = "^1"
syn = "^1.0"
thiserror = "^1.0"
tokio = "^1"
toml = "^0.7.6"
void = "^1.0"
# workspace members
drift_interface = { path = "./examples/anchor/drift/drift_interface" }
marinade_finance_interface = { path = "./examples/anchor/marinade/marinade_finance_interface" }
mpl_token_metadata_interface = { path = "./examples/shank/token_metadata/mpl_token_metadata_interface" }
stake_program_interface = { path = "./examples/bincode/stake/stake_program_interface" }
system_program_interface = { path = "./examples/bincode/system/system_program_interface" }
test_utils = { path = "./test_utils" }
unstake_interface = { path = "./examples/anchor/unstake_it/unstake_interface" }