mango-v4/Cargo.toml

23 lines
696 B
TOML

[workspace]
members = [
"cli",
"client",
"programs/mango-v4",
"keeper",
"lib/*",
"liquidator",
"3rdparty/anchor/cli",
]
[profile.release]
overflow-checks = true
[patch.crates-io]
# for gzip encoded responses
jsonrpc-core-client = { git = "https://github.com/ckamm/jsonrpc.git", branch = "ckamm/http-with-gzip" }
# these patch anchor to use solana 1.14.9 in order to fix dependency conflicts in switchboard-v2
# downstream applications may need to copy these patches to their own workspace
anchor-spl = { path = "./3rdparty/anchor/spl/" }
anchor-lang = { path = "./3rdparty/anchor/lang/" }
switchboard-v2 = { path = "./3rdparty/switchboard-v2/rust/switchboard-v2/" }