-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (35 loc) · 1.14 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
[package]
name = "passers"
description = "A secure encrypted data manager"
version = "0.1.0"
license = "GPL-3.0-or-later"
keywords = ["encryption", "password-manager", "command-line", "rust"]
categories = ["command-line-utilities", "cryptography", "data-structures"]
authors = ["Emil Overbeck <emil.a.overbeck at gmail dot com>"]
readme = "README.md"
repository = "https://github.com/Swarthe/pass-rs"
documentation = "https://github.com/Swarthe/pass-rs"
homepage = "https://github.com/Swarthe/pass-rs"
edition = "2021"
[[bin]]
name = "pass"
path = "src/main.rs"
[dependencies]
lexopt = "0.3.0"
owo-colors = "4.0.0"
supports-color = "2.1.0"
xdg = "2.4.1"
path-absolutize = "3.0.14"
nix = { version = "0.27.1", features = ["mman", "process", "resource", "term"] }
rand = "0.8.5"
rust-argon2 = "2.1.0"
chacha20poly1305 = { version = "0.10.1", features = ["stream"] }
serde = { version = "1.0.150", features = ["derive"] }
ron = "0.8.0"
sublime_fuzzy = "0.7.0"
arboard = { version = "3.2.0", default-features = false }
shell-words = "1.1.0"
[profile.release]
strip = true
# TODO: use once available
#oom = "panic" # Allows destructors for sensitive data to run on OOM.