44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "websocket"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
base64.workspace = true
|
|
percent-encoding = "2.3.1"
|
|
itertools.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
http.workspace = true
|
|
cfg-if.workspace = true
|
|
log.workspace = true
|
|
thiserror.workspace = true
|
|
pin-project.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
futures-test-sink = "0.1.1"
|
|
tokio = { workspace = true, features = ["macros", "rt", "time"] }
|
|
|
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
|
ws_stream_wasm = "0.7"
|
|
graphql-ws-client = {workspace = true, features = ["ws_stream_wasm"]}
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
async-io.workspace = true
|
|
async-net = "2.0.0"
|
|
async-tungstenite = {version = "0.28.2", features = ["tokio-rustls-manual-roots"]}
|
|
http-body-util = "0.1"
|
|
hyper = { workspace = true, features = ["client", "http1"] }
|
|
hyper-util = { version = "0.1", features = ["tokio"] }
|
|
tokio = { workspace = true, features = ["io-util", "net", "time"] }
|
|
tokio-rustls = "0.26.4"
|
|
graphql-ws-client = {workspace = true, features = ["tungstenite"]}
|
|
rustls = "0.23.29"
|
|
rustls-platform-verifier = "0.6.1"
|