-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (37 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (37 loc) · 1.16 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
[package]
name = "warp-wireguard-gen"
version = "0.1.6"
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "Generate WireGuard configs by registering with Cloudflare WARP"
keywords = ["wireguard", "warp", "cloudflare", "vpn", "tunnel"]
categories = ["network-programming", "asynchronous"]
[features]
default = []
# Enable serde support for WarpCredentials persistence
serde = ["dep:serde_json"]
[dependencies]
# HTTP client - rustls with TLS 1.2 support
reqwest = { workspace = true, features = ["json"] }
rustls.workspace = true
webpki-roots.workspace = true
# Crypto
x25519-dalek.workspace = true
rand.workspace = true
rand_core = { version = "0.6", features = ["getrandom"] }
base64.workspace = true
# Error handling
thiserror.workspace = true
# Async
tokio.workspace = true
# Logging
log.workspace = true
# Time formatting for TOS timestamp
chrono.workspace = true
# Serialization - always needed for API types, optional serde_json for credentials persistence
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", optional = true }
# Local crates
wireguard-netstack.workspace = true