38 lines
1.8 KiB
TOML
38 lines
1.8 KiB
TOML
[workspace]
|
|
members = [
|
|
"bin/*",
|
|
"programs/*",
|
|
"lib/*",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0.63"
|
|
solana-sdk = { version = "1.17", default-features = false }
|
|
solana-client = { version = "1.17" }
|
|
solana-rpc-client = { version = "1.17" }
|
|
solana-rpc-client-api = { version = "1.17" }
|
|
mango-feeds-connector = { git = "https://github.com/blockworks-foundation/mango-feeds.git", tag = "connector-v0.4.8" }
|
|
yellowstone-grpc-client = { version = "1.15.0", git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", tag = "v1.15.0+solana.1.17" }
|
|
yellowstone-grpc-proto = { version = "1.14.0", git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", tag = "v1.15.0+solana.1.17" }
|
|
|
|
reqwest = { version = "0.11.27", features = ["json"] }
|
|
whirlpools-client = { git = "https://github.com/blockworks-foundation/whirlpools-client/", features = ["no-entrypoint"] }
|
|
openbook-v2 = { git = "https://github.com/openbook-dex/openbook-v2", tag = "v0.2.7", features = ["no-entrypoint", "client"] }
|
|
raydium-cp-swap = { git = "https://github.com/raydium-io/raydium-cp-swap/", features = ["no-entrypoint", "client"] }
|
|
stable-swap = { version = "1.8.1", features = ["no-entrypoint", "client"] }
|
|
stable-swap-client = { version = "1.8.1" }
|
|
stable-swap-math = { version = "1.8.1" }
|
|
uint = { version = "0.9.1" }
|
|
quic-geyser-client = { git = "https://github.com/blockworks-foundation/quic_geyser_plugin.git", branch = "router_v1.17.29" }
|
|
quic-geyser-common = { git = "https://github.com/blockworks-foundation/quic_geyser_plugin.git", branch = "router_v1.17.29" }
|
|
|
|
[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" }
|