-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 912 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
[package]
name = "abstract-ws-tungstenite"
version = "0.1.0"
authors = ["Izzy Swart <[email protected]>"]
edition = "2018"
[dependencies]
ws = "0.9.1"
abstract-ws = { git = "https://github.com/noocene/abstract-ws" }
tokio-tungstenite = "0.10.1"
tungstenite = { version = "0.10.1", default-features = false }
async-std-dep = { version = "1.6.0", optional = true, package = "async-std" }
tokio = { version = "0.2.21", default-features = false }
futures = { version = "0.3.5", default-features = false }
pin-utils = "0.1.0"
core-error = { git = "https://github.com/core-error/core-error" }
thiserror = { git = "https://github.com/noocene/thiserror" }
smol-dep = { version = "1.2.5", optional = true, package = "smol" }
async-tls = { version = "0.7.0", optional = true }
rustls = { version = "0.17.0", optional = true }
[features]
async_std = ["async-std-dep"]
smol = ["smol-dep"]
tls = ["async-tls", "rustls"]