-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 832 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 832 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
31
32
33
[package]
name = "oo7-cli"
description = "System keyring access from the terminal"
authors.workspace = true
categories.workspace = true
keywords.workspace = true
edition.workspace = true
exclude.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
anstyle = "1.0"
clap.workspace = true
hex = "0.4"
oo7 = { workspace = true, features = ["tokio"] }
rpassword.workspace = true
serde.workspace = true
serde_json.workspace = true
time = { version = "0.3", default-features = false, features = ["alloc", "formatting", "local-offset"] }
tokio = { workspace = true, features = ["macros", "rt"] }
[features]
default = ["native_crypto"]
native_crypto = [
"oo7/native_crypto"
]
openssl_crypto = [
"oo7/openssl_crypto"
]