2021-11-01 02:34:25 -07:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2023-03-17 04:57:11 -07:00
|
|
|
"connector",
|
2021-11-08 00:40:03 -08:00
|
|
|
"lib",
|
2023-02-02 23:15:58 -08:00
|
|
|
"service-mango-crank",
|
2022-03-28 10:58:14 -07:00
|
|
|
"service-mango-fills",
|
|
|
|
"service-mango-pnl",
|
2022-12-16 03:00:42 -08:00
|
|
|
"service-mango-orderbook",
|
2021-11-01 02:34:25 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
# for gzip encoded responses
|
2023-03-21 03:34:05 -07:00
|
|
|
jsonrpc-core-client = { git = "https://github.com/ckamm/jsonrpc.git", branch = "ckamm/http-with-gzip-default-v18.0.0" }
|
2023-08-29 04:52:38 -07:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
solana-rpc = "~1.14.9"
|
|
|
|
solana-client = "~1.14.9"
|
|
|
|
solana-account-decoder = "~1.14.9"
|
|
|
|
solana-sdk = "~1.14.9"
|
|
|
|
solana-logger = "~1.14.9"
|
|
|
|
|
|
|
|
anchor-spl = "0.27.0"
|
|
|
|
anchor-lang = "0.27.0"
|
|
|
|
anchor-client = "0.27.0"
|
|
|
|
|
|
|
|
mango-v4 = { tag = "program-v0.16.0", git = "https://github.com/blockworks-foundation/mango-v4.git"}
|
|
|
|
mango-v4-client = { tag = "program-v0.16.0", git = "https://github.com/blockworks-foundation/mango-v4.git" }
|
|
|
|
|
2023-09-05 14:51:59 -07:00
|
|
|
serum_dex = { git = "https://github.com/jup-ag/openbook-program", branch = "feat/expose-things", features = ["no-entrypoint"] }
|
2023-09-01 07:45:15 -07:00
|
|
|
# this works in solana-rpc-client-simple; solves anchor 0.28.0 issue
|
2023-09-05 14:51:59 -07:00
|
|
|
#serum_dex = { git = "https://github.com/openbook-dex/program.git", tag = "v0.5.10", default-features=false, features = ["no-entrypoint", "program"] }
|
2023-08-29 04:52:38 -07:00
|
|
|
|
|
|
|
jsonrpc-core = "18.0.0"
|
|
|
|
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
|
|
|
|
|
|
|
|
fixed = { tag = "program-v0.16.0", git = "https://github.com/blockworks-foundation/mango-v4.git" }
|
|
|
|
bs58 = "0.5"
|
|
|
|
base64 = "0.21.0"
|
|
|
|
log = "0.4"
|
|
|
|
rand = "0.7"
|
|
|
|
anyhow = "1.0"
|
|
|
|
toml = "0.5"
|
|
|
|
bytes = "1.0"
|
|
|
|
itertools = "0.10.5"
|
|
|
|
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
futures = "0.3.17"
|
|
|
|
futures-core = "0.3"
|
|
|
|
futures-channel = "0.3"
|
|
|
|
futures-util = "0.3"
|
|
|
|
ws = "^0.9.2"
|
|
|
|
async-channel = "1.6"
|
|
|
|
async-trait = "0.1"
|
|
|
|
bytemuck = "1.7.2"
|
|
|
|
jemallocator = "0.3.2"
|
|
|
|
chrono = "0.4.23"
|
|
|
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-tungstenite = "0.17"
|
|
|
|
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
|
|
|
|
tokio-postgres-rustls = "0.9.0"
|
|
|
|
postgres-types = { version = "0.2", features = ["array-impls", "derive", "with-chrono-0_4"] }
|
|
|
|
postgres-native-tls = "0.5"
|
|
|
|
native-tls = "0.2"
|
|
|
|
rustls = "0.20.8"
|
|
|
|
# postgres_query hasn't updated its crate in a while
|
|
|
|
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
|
|
|
|
|
|
|
|
|