2021-11-01 02:34:25 -07:00
|
|
|
[package]
|
2023-03-17 04:57:11 -07:00
|
|
|
name = "mango-feeds-lib"
|
2021-11-01 02:34:25 -07:00
|
|
|
version = "0.1.0"
|
2022-01-06 23:21:00 -08:00
|
|
|
authors = ["Christian Kamm <mail@ckamm.de>"]
|
2022-03-23 00:19:19 -07:00
|
|
|
edition = "2021"
|
2023-03-25 04:58:32 -07:00
|
|
|
license = "AGPL-3.0-or-later"
|
2021-11-01 02:34:25 -07:00
|
|
|
|
2021-11-08 00:40:03 -08:00
|
|
|
[lib]
|
|
|
|
|
|
|
|
|
2021-11-01 02:34:25 -07:00
|
|
|
[dependencies]
|
2023-03-17 04:57:11 -07:00
|
|
|
mango-feeds-connector = { path = "../connector" }
|
2023-03-16 06:58:52 -07:00
|
|
|
|
2021-11-01 02:34:25 -07:00
|
|
|
jsonrpc-core = "18.0.0"
|
|
|
|
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
|
|
|
|
|
2022-12-16 02:58:04 -08:00
|
|
|
solana-rpc = "~1.14.9"
|
|
|
|
solana-client = "~1.14.9"
|
|
|
|
solana-account-decoder = "~1.14.9"
|
|
|
|
solana-sdk = "~1.14.9"
|
2021-11-01 02:34:25 -07:00
|
|
|
|
2023-03-16 06:58:52 -07:00
|
|
|
mango-v4 = { git = "https://github.com/blockworks-foundation/mango-v4", branch = "dev", features = ["client"] }
|
2022-03-28 10:58:14 -07:00
|
|
|
bytemuck = "*"
|
|
|
|
fixed = { version = "*", features = ["serde"] }
|
|
|
|
|
2021-11-01 02:34:25 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-02-03 03:45:29 -08:00
|
|
|
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"] }
|
2021-11-13 00:32:32 -08:00
|
|
|
postgres-native-tls = "0.5"
|
|
|
|
native-tls = "0.2"
|
2021-11-04 01:57:55 -07:00
|
|
|
|
|
|
|
# postgres_query hasn't updated its crate in a while
|
2021-11-01 02:34:25 -07:00
|
|
|
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
|
|
|
|
|
2021-11-02 05:22:13 -07:00
|
|
|
serde = "1.0.130"
|
|
|
|
serde_derive = "1.0.130"
|
|
|
|
serde_json = "1.0.68"
|
|
|
|
|
2022-03-28 10:58:14 -07:00
|
|
|
bs58 = "*"
|
2023-04-07 08:27:54 -07:00
|
|
|
base64 = "0.21.0"
|
2021-11-01 02:34:25 -07:00
|
|
|
log = "0.4"
|
|
|
|
rand = "0.7"
|
|
|
|
anyhow = "1.0"
|
2021-11-09 05:32:58 -08:00
|
|
|
bytes = "1.0"
|
2022-12-16 03:00:42 -08:00
|
|
|
itertools = "0.10.5"
|
2023-02-03 03:45:29 -08:00
|
|
|
chrono = "0.4.23"
|
2021-11-08 00:40:03 -08:00
|
|
|
|
|
|
|
futures = "0.3.17"
|
|
|
|
futures-core = "0.3"
|
|
|
|
|
2021-11-03 04:17:49 -07:00
|
|
|
async-channel = "1.6"
|
2021-11-03 09:22:52 -07:00
|
|
|
async-trait = "0.1"
|
2021-11-04 01:57:55 -07:00
|
|
|
|
2022-11-16 06:57:50 -08:00
|
|
|
anchor-lang = "0.25.0"
|
|
|
|
|
2023-03-16 06:58:52 -07:00
|
|
|
serum_dex = { git = "https://github.com/jup-ag/openbook-program", branch = "feat/expose-things", features = ["no-entrypoint"] }
|
2022-08-25 03:51:38 -07:00
|
|
|
|
2021-11-01 02:34:25 -07:00
|
|
|
[build-dependencies]
|
2022-08-25 03:51:38 -07:00
|
|
|
tonic-build = { version = "0.6", features = ["compression"] }
|
2021-11-01 02:34:25 -07:00
|
|
|
|