forked from poscat0x04/wgcf-teams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (43 loc) · 1002 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
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
51
52
53
54
55
[package]
name = "wgcf-teams"
description = "Extract wireguard configurations from cloudflare's warp for teams"
version = "0.2.0"
edition = "2021"
authors = ["poscat <poscat@poscat.moe>"]
repository = "https://github.com/poscat0x04/wgcf-teams"
readme = "README.md"
license = "BSD-3"
keywords = ["wireguard", "warp", "cloudflare"]
categories = ["command-line-utilities"]
[dependencies]
wireguard-keys = "0.1"
iprange = "0.6"
ipnet = "2.7"
anyhow = "1.0"
serde_json = "1.0"
argh = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.tokio]
version = "1.21"
features = ["rt-multi-thread", "macros", "time"]
[dependencies.reqwest]
version = "0.11"
features = ["json", "gzip", "cookies"]
[dependencies.serde]
version = "1.0"
features = ["serde_derive"]
[dependencies.serde_with]
version = "2.2"
features = ["base64"]
[[bin]]
name = "wgcf-teams"
path = "src/main.rs"
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 'z'
lto = true
strip = true
panic = "abort"