-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 865 Bytes
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
[package]
name = "argon2-cli"
version = "0.1.1"
edition = "2024"
authors = [
"Joel Schulz-Andres <joel@systemscape.de>",
"Julian Dickert <julian@systemscape.de>",
]
categories = ["command-line-utilities", "development-tools",]
description = "Generate Argon2 hashes from command line"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Systemscape/argon2-cli"
keywords = ["argon2", "hash", "cli", "terminal"]
[package.metadata.wix]
upgrade-guid = "B9F6078C-1F85-4B80-9D44-98AA7D55E9FD"
path-guid = "126638F7-DCCB-49E3-95D2-AD7F8B18EB82"
license = false
eula = false
[dependencies]
argon2 = "0.5.3"
clap = { version = "4.5.54", features = ["derive"] }
hex = "0.4.3"
[dev-dependencies]
rand = { version = "0.9.2", features = ["std", "std_rng"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"