[package]
edition = "2024"
name = "simploxide-ws-core"
version = "0.1.1"
authors = ["a1akris <alkrivitskiy@pm.me>"]
build = false
exclude = ["docs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SimpleX-Chat raw websocket client"
documentation = "https://docs.rs/simploxide-ws-core"
readme = "README.md"
keywords = [
"simplex-chat",
"websocket",
"client",
]
categories = [
"network-programming",
"asynchronous",
"web-programming::websocket",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/a1akris/simploxide"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
cli = ["tokio/process"]
[lib]
name = "simploxide_ws_core"
path = "src/lib.rs"
[dependencies.futures]
version = "0.3"
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.simploxide-core]
version = "0.4"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"macros",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-tungstenite]
version = "0.29"
features = ["connect"]
default-features = false
[dependencies.tokio-util]
version = "0.7"