summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: b7770d82276fb7aae27ad596cc8668fa1a6be657 (plain)
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
[package]
name = "cloak"
version = "0.3.0"
authors = ["Evans Murithi <murithievans80@gmail.com>"]
exclude = ["assets/*"]
repository = "https://github.com/evansmurithi/cloak"
homepage = "https://github.com/evansmurithi/cloak"
readme = "README.md"
keywords = ["otp", "cli", "authentication"]
categories = ["command-line-utilities", "authentication"]
license = "MIT"
description = "A Command Line OTP (One Time Password) Authenticator application."
edition = "2018"

[dependencies]
clap = { version = "3.2.20", features = ["cargo", "wrap_help"] }
ring = "0.16.20"
data-encoding = "2.3.2"
toml = "0.5.9"
serde = "1.0.144"
serde_derive = "1.0.119"
dirs-next = "2.0.0"
thiserror = "1.0.33"
lazy_static = "1.4.0"

[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.0"
escargot = "0.5"
predicates = "2.1.1"

[[bin]]
path = "src/main.rs"
name = "cloak"