-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
47 lines (42 loc) · 1.26 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
[package]
name = "bws"
version = "0.3.0"
edition = "2021"
rust-version = "1.60"
authors = ["Bitwarden Inc"]
license-file = "LICENSE"
repository = "https://github.com/bitwarden/sdk"
homepage = "https://bitwarden.com"
description = """
Bitwarden Secrets Manager CLI
"""
keywords = ["bitwarden", "secrets-manager", "cli"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bat = { version = "0.23.0", features = [
"regex-onig",
], default-features = false }
chrono = { version = "0.4.26", features = [
"clock",
"std",
], default-features = false }
clap = { version = "4.3.0", features = ["derive", "env", "string"] }
clap_complete = "4.3.2"
color-eyre = "0.6"
comfy-table = "^7.0.1"
directories = "5.0.1"
env_logger = "0.10.0"
log = "0.4.18"
serde = "^1.0.163"
serde_json = "^1.0.96"
serde_yaml = "0.9"
supports-color = "2.0.0"
thiserror = "1.0.40"
tokio = { version = "1.28.2", features = ["rt-multi-thread", "macros"] }
toml = "0.7.4"
uuid = { version = "^1.3.3", features = ["serde"] }
bitwarden = { path = "../bitwarden", version = "0.3.0", features = ["secrets"] }
[dev-dependencies]
tempfile = "3.5.0"
[target.'cfg(target_os = "linux")'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }