solana-program-library/Cargo.toml

28 lines
756 B
TOML
Raw Normal View History

2020-08-07 09:45:36 -07:00
[workspace]
members = [
"utils/cgen",
2020-08-27 21:12:19 -07:00
"utils/test-client",
2020-08-07 23:58:18 -07:00
"memo/program",
"token-swap/program",
"token/cli",
"token/program",
2020-08-07 09:45:36 -07:00
]
2020-09-01 17:27:11 -07:00
exclude = [
"token/perf-monitor",
]
2020-08-07 21:54:50 -07:00
# Workflow for developing against local Solana crates
#
# 0. Uncomment the below patches
# 1. Replace PATH_TO_SOLANA with your local filestem path to the Solana mono-repo
# 2. Run `cargo update`
# 3. Use `cargo` normally
#
[patch.crates-io]
2020-08-12 21:28:07 -07:00
#solana-account-decoder = {path = "PATH_TO_SOLANA/account-decoder" }
2020-08-07 21:54:50 -07:00
#solana-clap-utils = {path = "PATH_TO_SOLANA/clap-utils" }
#solana-cli-config = {path = "PATH_TO_SOLANA/cli-config" }
#solana-client = { path = "PATH_TO_SOLANA/client"}
#solana-logger = {path = "PATH_TO_SOLANA/logger" }
#solana-sdk = { path = "PATH_TO_SOLANA/sdk" }