[package]
edition = "2021"
rust-version = "1.85"
name = "thornode-pulse"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client SDK for the pulse QUIC decoded-shred transaction stream"
homepage = "https://github.com/thorlabsDev/pulse-sdk"
documentation = "https://docs.rs/thornode-pulse"
readme = "README.md"
keywords = [
"quic",
"solana",
"streaming",
"sdk",
]
categories = [
"api-bindings",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thorlabsDev/pulse-sdk"
[lib]
name = "thornode_pulse"
path = "src/lib.rs"
[[example]]
name = "full_tx"
path = "examples/full_tx.rs"
[[example]]
name = "sig_first"
path = "examples/sig_first.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[dependencies.bs58]
version = "0.5"
[dependencies.bytes]
version = "1"
[dependencies.quinn]
version = "0.11"
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"std",
]
default-features = false
[dependencies.rustls-native-certs]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.socket2]
version = "0.5"
[dependencies.thornode-pulse-wire]
version = "0.1.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"sync",
"time",
"macros",
"io-util",
]
[dev-dependencies.rcgen]
version = "0.13"