forked from replydev/cotp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (40 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
[package]
name = "cotp"
version = "0.2.0"
authors = ["replydev <[email protected]>"]
edition = "2021"
description = "Trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality."
repository = "https://github.com/replydev/cotp"
homepage = "https://github.com/replydev/cotp"
documentation = "https://github.com/replydev/cotp/blob/master/README.md"
readme = "README.md"
license-file = "LICENSE"
categories = ["command-line-utilities","authentication"]
keywords = ["cotp","totp","authenticator","google-authenticator","argon2"]
#Optimize release binary size
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
[dependencies]
serde_json = "1.0.79"
serde = { version = "1.0.136", features = ["derive"] }
dirs = "4.0.0"
rpassword = "6.0.1"
data-encoding = "2.3.2"
crossterm = "0.23.1"
tui = "0.17.0"
copypasta-ext = "0.3.7"
zeroize = "1.4.3"
clap = "3.1.6"
hmac = "0.12.1"
sha-1 = "0.10.0"
sha2 = "0.10.2"
chacha20poly1305 = "0.9.0"
rust-argon2 = "1.0"
getrandom = "0.2.6"
scrypt = "0.10.0"
aes-gcm = "0.9.4"
hex = "0.4.3"
qrcode = "0.12.0"
urlencoding = "2.1.0"