-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 854 Bytes
/
Cargo.toml
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
28
29
30
31
32
33
[package]
name = "tokio-websocket-client"
version = "0.2.0"
edition = "2024"
authors = ["CodeOverFlow"]
description = "A tokio based websocket client. It aims to ease dealing with websockets."
keywords = ["Network", "websocket", "tokio", "async", "client"]
categories = [
"network-programming",
"web-programming::websocket",
"asynchronous",
]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/codeOverFlow/tokio-websocket-client"
repository = "https://github.com/codeOverFlow/tokio-websocket-client"
[dependencies]
futures = "0.3.31"
log = "0.4.27"
tokio = { version = "1.44.1", features = [
"time",
"rt",
"rt-multi-thread",
"macros",
] }
flume = "0.11.1"
[dev-dependencies]
reqwest = "0.12.15"
reqwest-websocket = "0.4.4"
async-tungstenite = { version = "0.29.1", features = ["tokio-runtime"] }
simple_logger = "5.0.0"