openbook-candles/Cargo.toml

71 lines
1.6 KiB
TOML
Raw Normal View History

2023-03-05 22:52:42 -08:00
[package]
2023-03-12 17:48:53 -07:00
name = "openbook-candles"
2023-03-05 22:52:42 -08:00
version = "0.1.0"
edition = "2021"
2023-03-12 17:48:53 -07:00
[lib]
name = "openbook_candles"
path = "src/lib.rs"
[[bin]]
2023-03-14 14:57:42 -07:00
name = "worker"
path = "src/worker/main.rs"
2023-03-12 17:48:53 -07:00
[[bin]]
name = "server"
path = "src/server/main.rs"
2023-03-05 22:52:42 -08:00
[[bin]]
name = "backfill-candles"
path = "src/backfill-candles/main.rs"
2023-05-06 18:06:19 -07:00
2023-03-05 22:52:42 -08:00
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
2023-03-13 09:51:30 -07:00
futures = "0.3.27"
2023-03-05 22:52:42 -08:00
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
deadpool-postgres = { version = "0.10.5", features = [ "rt_tokio_1", "serde" ] }
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
postgres-native-tls = "0.5.0"
native-tls = "0.2.11"
2023-03-05 22:52:42 -08:00
chrono = "0.4.23"
solana-client = "=1.14.13"
solana-account-decoder = "=1.14.13"
solana-transaction-status = "=1.14.13"
solana-sdk = "=1.14.13"
solana-rpc = "=1.14.13"
2023-03-09 20:54:51 -08:00
spl-token = "3.5.0"
2023-03-05 22:52:42 -08:00
anchor-client = "=0.26.0"
borsh = "0.9"
async-trait = "0.1"
anyhow = "1.0"
log = "0.4"
dotenv = "0.15.0"
2023-03-12 17:48:53 -07:00
env_logger = "0.10.0"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2023-03-11 14:50:22 -08:00
strum = { version = "0.24", features = ["derive"] }
num-traits = "0.2"
2023-03-12 22:03:58 -07:00
derive_more = "0.99.17"
2023-03-05 22:52:42 -08:00
serum_dex = { version = "0.5.10", git = "https://github.com/openbook-dex/program.git", default-features=false, features = ["no-entrypoint", "program"] }
anchor-lang = ">=0.25.0"
2023-03-12 17:48:53 -07:00
actix-web = "4"
2023-05-29 10:37:03 -07:00
actix-web-prom = { version = "0.6.0", git = "https://github.com/riordanp/actix-web-prom.git", branch = "exclude-paths" }
2023-05-06 18:06:19 -07:00
arrayref = "0.3.6"
bytemuck = "1.12.3"
num_enum = "0.6.1"
2023-05-29 10:37:03 -07:00
config = "0.13.1"
prometheus = "0.13.3"
lazy_static = "1.4.0"
2023-07-26 18:25:19 -07:00
itertools = "0.11.0"