-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 877 Bytes
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
[package]
name = "rust_keylock_shell"
version = "0.18.0"
authors = ["aston <astonbitecode@gmail.com>"]
description = "Shell access to the rust-keylock. rust-keylock is a password manager with goals to be Secure, Simple to use, Portable and Extensible."
keywords = ["password", "manager", "safe", "encryption", "key"]
license = "GPL-3.0"
repository = "https://github.com/rust-keylock/rust-keylock-shell"
homepage = "https://rust-keylock.github.io/"
readme = "README.md"
categories = ["cryptography", "authentication"]
edition = "2021"
[badges]
travis-ci = { repository = "rust-keylock/rust-keylock-shell", branch = "master" }
[dependencies]
rust_keylock = "0.18"
log = "0.4"
fern = "0.7"
chrono = "0.4"
rpassword = "7.4"
webbrowser = "1.2"
termcolor = "1.4"
async-trait = "0.1"
tokio = { version = "1", features = ["full"] }
[[bin]]
name = "rust-keylock"
path = "src/main.rs"