-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (35 loc) · 965 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
37
38
[package]
authors = ["German Lashevich <[email protected]>"]
categories = ["command-line-utilities"]
description = "Manager of one-time password generators"
documentation = "https://github.com/zebradil/rustotpony"
edition = "2021"
homepage = "https://github.com/zebradil/rustotpony"
keywords = ["totp"]
license = "MIT"
name = "rustotpony"
readme = "README.md"
repository = "https://github.com/zebradil/rustotpony"
version = "0.5.4" # SED-HERE <- this is a marker for the version
[dependencies]
age = "0.10.0"
base32 = "0.5.1"
clap = { version = "^4.5.16", features = ["derive"] }
dirs = "^5.0.1"
keyring = "^3.2.0"
promkit = "0.5.0"
rand = "^0.8.5"
rust-crypto = "0.2.36"
serde = "1.0.209"
serde_derive = "1.0.209"
serde_json = "1.0.127"
sha2 = "0.10.8"
totp-lite = "2.0.1"
[dependencies.ctrlc]
features = ["termination"]
version = "3.4"
[profile.release]
debug = false
lto = true
opt-level = 3
panic = "abort"