-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
65 lines (54 loc) · 1.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "cryptex"
authors = ["Michael Lodder <[email protected]>"]
categories = []
description = """
Cryptex uses system keyrings to store and retrieve secrets
or a local file
"""
documentation = "https://docs.rs/cryptex/"
edition = "2021"
homepage = "https://github.com/mikelodder7/cryptex"
keywords = ["secrets", "vault", "keyring"]
license = "MIT/Apache-2.0"
repository = "https://github.com/mikelodder7/cryptex"
readme = "README.md"
version = "1.8.1"
[lib]
crate-type = ["staticlib", "rlib", "cdylib"]
[[bin]]
name = "cryptex"
[features]
default = []
file = ["argon2", "chacha20poly1305", "dirs", "rusqlite"]
[dependencies]
atty = "0.2"
clap = "2.33"
colored = "2.0"
hex = "0.4"
rand = "0.8"
rpassword = "7"
serde = { version = "1", optional = true }
subtle = "2"
whoami = "1.1"
zeroize = { version = "1", features = ["zeroize_derive"] }
argon2 = { version = "0.5", optional = true }
chacha20poly1305 = { version = "0.10", optional = true }
dirs = { version = "5.0", optional = true }
merlin = { version = "3", optional = true }
rusqlite = { version = "0.30", features = ["bundled-sqlcipher-vendored-openssl"], optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies]
users = "0.11"
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.9"
security-framework-sys = "2.9"
core-foundation = "0.9"
core-foundation-sys = "0.8"
[target.'cfg(target_os = "linux")'.dependencies]
maplit = "1"
secret-service = "2"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["dpapi", "errhandlingapi", "wincred", "winerror"] }
byteorder = "1.4"