[package]
edition = "2021"
name = "rebind-client"
version = "0.2.0"
authors = ["US Input Company <inquiries@usinput.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for the Rebind remote access WebSocket protocol"
homepage = "https://rebind.gg"
readme = "README.md"
keywords = [
"rebind",
"websocket",
"hid",
"automation",
"input",
]
license = "MIT"
repository = "https://github.com/usinput/rebind-client-rs"
[lib]
name = "rebind_client"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.futures-util]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.26"
[dependencies.tungstenite]
version = "0.26"
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio-tungstenite]
version = "0.26"