-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.61 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
48
49
50
51
52
53
54
55
[package]
name = "awgman"
version = "0.1.2"
edition = "2021"
rust-version = "1.85"
license = "AGPL-3.0-only"
repository = "https://github.com/equalent/awgman"
description = "WireGuard/AmneziaWG keychain and manager TUI"
[dependencies]
anyhow = "1.0.98"
argon2 = { version = "0.5.3", features = ["std", "zeroize"] }
atomicwrites = "0.4.4"
base64 = "0.22.1"
bincode = "2.0.1"
bitvec = { version = "1.0.1", features = ["serde"] }
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
cidr = { version = "0.3.1", features = ["serde"] }
clap = { version = "4.5.42", features = ["derive"] }
colored = { version = "3.0.0" }
crossterm = "0.29.0"
getrandom = { version = "0.3.3", features = ["std"] }
inquire = { version = "0.7.5", default-features = false, features = ["crossterm", "macros"] }
nid = { version = "3.0.0", features = ["serde"] }
qrcode = { version = "0.14.1", default-features = false }
rand = "0.9.2"
regex = "1.11.1"
russh = "0.53.0"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_cbor = "0.11.2"
serde_json = "1.0.142"
subtle = "2.6.1"
ureq = { version = "3.0.12", features = ["json"] }
x25519-dalek = { version = "2.0.1", features = ["serde", "static_secrets", "getrandom"] }
zeroize = { version = "1.8.1", features = ["aarch64", "serde", "simd", "std"] }
[target.'cfg(unix)'.dependencies]
expanduser = "1.2.2"
[[bin]]
name = "awgman"
[profile.release]
lto = true
opt-level = 3
debug = 0
panic = 'abort'
incremental = false
codegen-units = 1
[profile.dev.package.argon2]
# build Argon2 optimised at dev
# so it's not painfully slow
opt-level = 3