forked from solana-labs/solana-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (31 loc) · 829 Bytes
/
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
[workspace]
members = [
"associated-token-account/program",
"binary-oracle-pair/program",
"examples/rust/cross-program-invocation",
"examples/rust/custom-heap",
"examples/rust/logging",
"examples/rust/sysvar",
"examples/rust/transfer-lamports",
"feature-proposal/program",
"feature-proposal/cli",
"libraries/math",
"memo/program",
"record/program",
"shared-memory/program",
"stake-pool/cli",
"stake-pool/program",
"token-lending/program",
"token-lending/client",
"token-swap/program",
"token-swap/program/fuzz",
"token/cli",
"token/program",
"utils/cgen",
"utils/test-client",
]
exclude = [
"themis/client_ristretto",
"themis/program_ristretto",
"token/perf-monitor", # TODO: Rework perf-monitor to use solana-program-test, avoiding the need to link directly with the BPF VM
]