-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "s9_websocket"
description = "A simple client library for blocking and non-blocking WebSockets."
categories = ["web-programming::websocket", "network-programming"]
keywords = ["websocket", "io", "web", "non-blocking"]
version = "0.0.2"
authors = ["Alexander Silvennoinen <alex@silvennoinen.de>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/s9_websocket/latest/s9_websocket"
homepage = "https://github.com/AlexSilver9/s9_websocket"
repository = "https://github.com/AlexSilver9/s9_websocket"
edition = "2021"
rust-version = "1.80.1"
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
[dependencies]
tungstenite = { version = "0.27", features = ["native-tls"] }
crossbeam-channel = "0.5"
tracing = "0.1"
[dev-dependencies]
tracing-subscriber = "0.3"
[lib]
name = "s9_websocket"
path = "src/lib.rs"