[package]
edition = "2021"
rust-version = "1.75"
name = "hypersync-client-solana"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for Solana HyperSync"
homepage = "https://github.com/enviodev/hypersync-client-solana"
readme = "README.md"
keywords = [
"solana",
"hypersync",
"envio",
"blockchain",
"indexing",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MPL-2.0"
repository = "https://github.com/enviodev/hypersync-client-solana"
[lib]
name = "hypersync_client_solana"
path = "src/lib.rs"
[[test]]
name = "decode_anchor"
path = "tests/decode_anchor.rs"
[[test]]
name = "decode_borsh_primitives"
path = "tests/decode_borsh_primitives.rs"
[[test]]
name = "decode_live"
path = "tests/decode_live.rs"
[[test]]
name = "decode_metaplex"
path = "tests/decode_metaplex.rs"
[[test]]
name = "from_arrow"
path = "tests/from_arrow.rs"
[[test]]
name = "live_smoke"
path = "tests/live_smoke.rs"
[[test]]
name = "rate_limit_behavior"
path = "tests/rate_limit_behavior.rs"
[[test]]
name = "stream_truncation"
path = "tests/stream_truncation.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arrow]
version = "57"
features = ["ipc"]
[dependencies.borsh]
version = "1"
[dependencies.bs58]
version = "0.5"
[dependencies.futures]
version = "0.3"
[dependencies.hypersync-solana-net-types]
version = "0.2.0"
[dependencies.hypersync-solana-schema]
version = "0.2.0"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls-native-roots",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"rt",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.borsh]
version = "1"
features = ["derive"]
[dev-dependencies.http]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]