aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 04ae4b5d726738069a607880eec2aeb5bd57829c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "rpass"
version = "0.1.2"
authors = ["Christian Cleberg <hello@cleberg.net>"]
license = "GPL-3.0-or-later"
description = "A simple command-line password manager, written in Rust + SQLite."
readme = "README.md"
homepage = "https://git.sr.ht/~cxc/rust-pass"
repository = "https://git.sr.ht/~cxc/rust-pass"
keywords = ["cli", "password-manager", "password-generator"]
categories = ["command-line-utilities"]
edition = "2018"

[dependencies]
clap = "2.27"
uuid = { version = "0.8", features = ["v4"] }
rand = "0.8.4"
rusqlite = "0.25.3"
cli-table = "0.4"
openssl = ">=0.10.9"
fernet = "0.1"