-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
47 lines (39 loc) · 1.4 KB
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
[workspace]
resolver = "2"
members = [
"crates/wireguard-netstack",
"crates/wireguard-hyper-connector",
"crates/warp-wireguard-gen",
"crates/wireguard-managed-client",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "GPL-3.0"
authors = ["Lorenzo Rizzotti <dev@dreaming.codes>"]
repository = "https://github.com/Dreaming-Codes/wireguard-hyper-connector"
[workspace.dependencies]
# Shared dependencies with consistent versions
tokio = { version = "1", features = ["full"] }
bytes = "1"
log = "0.4"
thiserror = "2"
parking_lot = "0.12"
rand = "0.10"
base64 = "0.22"
# TLS
tokio-rustls = "0.26"
rustls = { version = "0.23", features = ["ring"] }
webpki-roots = "1.0"
# HTTP
reqwest = { version = "0.13" }
# reqwest with custom-hyper-connector support (will be merged upstream)
reqwest-wg = { git = "https://github.com/Dreaming-Codes/reqwest", branch = "custom-hyper-connector", package = "reqwest", default-features = false, features = ["custom-hyper-connector"] }
# Crypto
x25519-dalek = { version = "2", features = ["static_secrets"] }
# Time
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
# Local crates
wireguard-netstack = { version = "0.3.0", path = "crates/wireguard-netstack" }
wireguard-hyper-connector = { version = "0.3.0", path = "crates/wireguard-hyper-connector" }
warp-wireguard-gen = { version = "0.1.6", path = "crates/warp-wireguard-gen" }