-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 754 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
[package]
name = "socketio_client"
version = "0.1.0"
edition = "2021"
description = "Socket.IO client implementation with Engine.IO protocol version 3 support (socket.io-client@2.5.0 Rust port)"
license = "MIT"
repository = "https://github.com/an1by/socketio_client"
documentation = "https://docs.rs/crate/socketio_client"
readme = "README.md"
keywords = ["websocket", "socket-io", "socket-io-client"]
authors = ["An1by"]
[dependencies]
tokio = { version = "1.0", features = ["full"] }
tokio-tungstenite = { version = "0.21", features = ["native-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.5"
futures = "0.3"
thiserror = "1.0"
log = "0.4"
bytes = "1.5"
[dev-dependencies]
env_logger = "0.11"
dotenvy = "0.15"