35 lines
1005 B
TOML
35 lines
1005 B
TOML
[package]
|
|
name = "solana-lite-rpc-util"
|
|
version = "0.2.4"
|
|
edition = "2021"
|
|
description = "Utility for non-domain functions"
|
|
rust-version = "1.73.0"
|
|
repository = "https://github.com/blockworks-foundation/lite-rpc"
|
|
license = "AGPL"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = "1.*"
|
|
tokio-stream = { version = "0.1.14" , features = ["sync"]}
|
|
bincode = { workspace = true }
|
|
bs58 = { workspace = true }
|
|
base64 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
futures = { workspace = true }
|
|
merge-streams = { workspace = true }
|
|
bytes = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
log = { workspace = true }
|
|
tracing = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
quinn = { workspace = true }
|
|
chrono = { workspace = true }
|
|
rustls = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
derive_more = "0.99.17"
|
|
async-channel = { workspace = true }
|
|
itertools = {workspace = true}
|
|
prometheus = { workspace = true }
|
|
lazy_static = { workspace = true }
|