summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 14b49faa31e63dd1c1ed52ed28bf36eafd4fe5a5 (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
[package]
name = "cloak"
version = "0.2.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."

[dependencies]
clap = "2.32.0"
ring = "0.14.6"
data-encoding = "2.1.1"
toml = "0.5.0"
serde = "1.0"
serde_derive = "1.0"
open = "1.2.1"
dirs = "1.0.2"
failure = "0.1.1"

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