-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
62 lines (55 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "vanity_gpg"
version = "0.3.2"
edition = "2021"
authors = ["Kay Lin <[email protected]>"]
description = "A simple tool for generating and filtering vanity GPG keys, c0nCurr3nt1Y"
homepage = "https://github.com/RedL0tus/VanityGPG"
repository = "https://github.com/RedL0tus/VanityGPG"
keywords = [ "GPG", "Vanity", "VanityGPG" ]
readme = "README.md"
license = "MIT"
categories = [ "command-line-utilities" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [ "sequoia" ]
sequoia = [ "sequoia-openpgp" ]
rpgp = [ "pgp", "rand", "chrono", "smallvec", "sha-1" ]
[dev-dependencies]
hex = "^0.4"
[build-dependencies]
cc = "1.0"
[dependencies]
log = { version = "^0.4", features = [ "std" ] }
pgp = { version = "^0.10", optional = true }
clap = { version = "^4.3", features = [ "derive" ] }
rand = { version = "^0.8", optional = true }
rayon = "^1.7"
regex = "^1.9"
sha-1 = { version = "^0.10", features = [ "asm", "compress" ], optional = true }
anyhow = "^1.0"
chrono = { version = "^0.4", optional = true }
nettle = "^7.3"
colored = "^2.0"
mimalloc = { version = "^0.1", default-features = false }
smallvec = { version = "^1.11", optional = true }
backtrace = "^0.3"
byteorder = "^1.4"
indicatif = "^0.17"
thiserror = "^1.0"
sequoia-openpgp = { version = "^1.16", optional = true }
[profile.test]
opt-level = 3
debug = true
debug-assertions = false
overflow-checks = false
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
overflow-checks = false
lto = true
panic = 'unwind'
incremental = false
codegen-units = 1
rpath = false