-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.08 KB
/
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
[package]
name = "npwg"
version = "0.3.7"
edition = "2021"
license = "MIT"
authors = ["Volker Schwaberow <[email protected]>"]
description = "Securely generate random passwords"
repository = "https://github.com/vschwaberow/npwg"
[lib]
name = "npwg"
path = "src/lib.rs"
[[bin]]
name = "npwg"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.8.5", features = ["std", "small_rng"] }
regex = "1.11.1"
chacha20 = { version = "0.9.1", features = ["std", "zeroize"] }
clap = { version = "4.5.19", features = ["cargo", "env", "derive"] }
zeroize = "1.8.1"
tokio = { version = "1.41.1", features = ["full"] }
dashmap = "6.1.0"
rand_distr = "0.4"
dirs = "5.0.1"
reqwest = { version = "0.12.9", features = ["blocking"] }
futures = "0.3.31"
colored = "2.1.0"
serde = { version = "1.0.215", features = ["derive"] }
thiserror = "2.0.3"
dialoguer = "0.11.0"
console = "0.15.8"
arboard = { version = "3.4.1", features = ["wl-clipboard-rs"] }
[profile.release]
opt-level = 3
debug = false
strip = true
lto = false