-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (29 loc) · 997 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
[package]
name = "lesspass"
description = "An efficient implementation of the LessPass password generator."
version = "0.4.2"
authors = ["Grégoire Geis <[email protected]>"]
repository = "https://github.com/71/lesspass.rs"
readme = "README.md"
license = "GPL-3.0-only"
edition = "2021"
rust-version = "1.70" # MSRV
keywords = ["cli", "password", "generator"]
categories = ["algorithms", "command-line-utilities"]
[lib]
name = "lesspass"
path = "src/lib.rs"
[[bin]]
name = "lesspass"
path = "src/main.rs"
required-features = ["default"]
[dependencies]
bitflags = "2.4"
uint = { version = "0.9", default-features = false }
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
sha2 = { version = "0.10", default-features = false }
clap = { version = "4.4", optional = true, features = ["derive"] }
rpassword = { version = "7.3", optional = true }
[features]
default = [ "clap", "rpassword", "std" ]
std = []