2023-09-21 00:56:51 -07:00
|
|
|
[package]
|
2024-02-05 11:20:15 -08:00
|
|
|
name = "solana-lite-rpc-blockstore"
|
2024-01-29 04:11:54 -08:00
|
|
|
version = "0.2.4"
|
2023-09-21 00:56:51 -07:00
|
|
|
edition = "2021"
|
|
|
|
description = "History implementations used by solana lite rpc"
|
2024-03-08 02:40:55 -08:00
|
|
|
rust-version = "1.75.0"
|
2023-09-21 00:56:51 -07:00
|
|
|
repository = "https://github.com/blockworks-foundation/lite-rpc"
|
|
|
|
license = "AGPL"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-transaction-status = { workspace = true }
|
|
|
|
solana-rpc-client = { workspace = true }
|
|
|
|
|
|
|
|
dashmap = {workspace = true}
|
|
|
|
async-trait = { workspace = true }
|
2024-01-22 06:22:11 -08:00
|
|
|
tokio = { version = "1.28.2", features = ["full", "fs"]}
|
|
|
|
tokio-util = "0.7"
|
2023-09-21 00:56:51 -07:00
|
|
|
|
|
|
|
solana-lite-rpc-core = {workspace = true}
|
2024-01-22 06:22:11 -08:00
|
|
|
solana-lite-rpc-cluster-endpoints = {workspace = true}
|
2023-09-21 00:56:51 -07:00
|
|
|
solana-rpc-client-api = {workspace = true}
|
2023-10-04 06:25:06 -07:00
|
|
|
native-tls = { workspace = true }
|
|
|
|
postgres-native-tls = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
log = {workspace = true}
|
2024-01-22 06:22:11 -08:00
|
|
|
tracing-subscriber = { workspace = true, features = ["std", "env-filter"] }
|
2023-10-04 06:25:06 -07:00
|
|
|
chrono = {workspace = true}
|
2024-01-22 06:22:11 -08:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
jsonrpsee = { workspace = true }
|
2023-10-04 06:25:06 -07:00
|
|
|
bincode = {workspace = true}
|
|
|
|
base64 = {workspace = true}
|
2023-10-05 05:52:55 -07:00
|
|
|
itertools = {workspace = true}
|
2024-01-22 06:22:11 -08:00
|
|
|
rangetools = {workspace = true}
|
2023-11-27 00:54:59 -08:00
|
|
|
tokio-postgres = { version = "0.7.8", features = ["with-chrono-0_4"] }
|
2024-01-22 06:22:11 -08:00
|
|
|
futures = {workspace = true}
|
|
|
|
futures-util = {workspace = true}
|
|
|
|
bytes = "1.5.0"
|
|
|
|
rand = "0.8.5"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tracing-subscriber = { workspace = true }
|