forked from bitwarden/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (55 loc) · 1.44 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
[package]
name = "bws"
version = "1.0.0"
description = """
Bitwarden Secrets Manager CLI
"""
keywords = ["bitwarden", "secrets-manager", "cli"]
exclude = ["Dockerfile*", "entitlements.plist"]
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
license-file.workspace = true
[dependencies]
bat = { version = "0.24.0", features = [
"regex-onig",
], default-features = false }
bitwarden = { workspace = true, features = ["secrets"] }
bitwarden-cli = { workspace = true }
chrono = { version = "0.4.38", features = [
"clock",
"std",
], default-features = false }
clap = { version = "4.5.4", features = ["derive", "env", "string"] }
clap_complete = "4.5.2"
color-eyre = "0.6.3"
comfy-table = "7.1.1"
directories = "5.0.1"
env_logger = "0.11.1"
itertools = "0.13.0"
log = "0.4.20"
regex = { version = "1.10.3", features = [
"std",
"perf",
], default-features = false }
serde = "1.0.196"
serde_json = "1.0.113"
serde_yaml = "0.9"
supports-color = "3.0.0"
thiserror = "1.0.57"
tokio = { workspace = true, features = ["rt-multi-thread"] }
toml = "0.8.10"
uuid = { version = "1.7.0", features = ["serde"] }
which = "6.0.1"
[build-dependencies]
bitwarden-cli = { workspace = true }
clap = { version = "4.5.4", features = ["derive", "string"] }
clap_complete = "4.5.2"
clap_mangen = "0.2.20"
uuid = { version = "1.7.0" }
[dev-dependencies]
tempfile = "3.10.0"
[lints]
workspace = true