[package]
edition = "2021"
name = "hyperstack-sdk"
version = "0.3.3"
authors = ["Hypertek"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK client for connecting to HyperStack streaming servers"
documentation = "https://docs.rs/hyperstack-sdk"
readme = "README.md"
keywords = [
"hyperstack",
"streaming",
"sdk",
"client",
"websocket",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/HyperTekOrg/hyperstack.git"
[features]
default = ["rustls"]
native-tls = ["tokio-tungstenite/native-tls"]
rustls = ["tokio-tungstenite/rustls-tls-webpki-roots"]
[lib]
name = "hyperstack_sdk"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.flate2]
version = "1.0"
[dependencies.futures-util]
version = "0.3"
features = ["sink"]
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tokio-tungstenite]
version = "0.21"
features = ["connect"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]