-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 872 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 872 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
28
29
30
31
32
33
34
[workspace]
members = ["cyper-core", "cyper", "cyper-axum"]
resolver = "3"
[workspace.package]
edition = "2024"
readme = "README.md"
license = "MIT"
repository = "https://github.com/compio-rs/cyper"
[workspace.dependencies]
compio = { version = "0.19.0-rc.1", default-features = false }
compio-quic = "0.8.0-rc.1"
cyper-core = { path = "./cyper-core", default-features = false, version = "0.9.0-rc.2" }
cyper-axum = { path = "./cyper-axum", default-features = false, version = "0.9.0-rc.1" }
socket2 = "0.6"
cfg_aliases = "0.2.1"
cfg-if = "1.0.0"
futures-channel = "0.3.29"
futures-util = "0.3.30"
send_wrapper = "0.6"
rustls = { version = "0.23.13", default-features = false }
rustls-platform-verifier = "0.7.0"
hyper = "1.4.1"
hyper-util = "0.1.8"
tower = "0.5.1"
tower-service = "0.3.2"
axum-core = "0.5.0"
axum = { version = "0.8.1", default-features = false }