-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
50 lines (47 loc) · 1.26 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
resolver = "2"
members = [
"ratchet_rs",
"ratchet_core",
"ratchet_deflate",
"ratchet_ext",
"ratchet_fixture",
"ratchet_rs/autobahn/client",
"ratchet_rs/autobahn/server",
"ratchet_rs/autobahn/split_client",
"ratchet_rs/autobahn/split_server",
"ratchet_rs/autobahn/utils"
]
[workspace.package]
version = "1.2.1"
authors = ["Swim Inc. developers [email protected]"]
edition = "2021"
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
license = "Apache-2.0"
[workspace.dependencies]
ratchet = { package = "ratchet_rs", version = "1.2.1", path = "ratchet_rs" }
ratchet_core = { version = "1.2.1", path = "ratchet_core" }
ratchet_ext = { version = "1.2.1", path = "ratchet_ext" }
ratchet_deflate = { version = "1.2.1", path = "ratchet_deflate" }
ratchet_fixture = { version = "1.2.1", path = "ratchet_fixture" }
url = "2.1.1"
http = "1.1.0"
tokio = "1.22"
tokio-util = "0.7.4"
tokio-stream = "0.1.11"
futures = "0.3.4"
futures-util = "0.3.4"
thiserror = "1.0"
bytes = "1.0"
rand = "0.8"
sha-1 = "0.10"
base64 = "0.22"
httparse = "1.4.1"
fnv = "1.0.3"
bitflags = "2.5"
either = "1.5.3"
log = "0.4.14"
flate2 = { version = "1.0", default-features = false }
anyhow = "1.0"
serde_json = "1.0"
tracing-subscriber = "0.3.18"