forked from PierreBeucher/novops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
74 lines (68 loc) · 1.91 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
65
66
67
68
69
70
71
72
73
74
[package]
name = "novops"
version = "0.12.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
clap = { version = "4.0.18", features = ["derive", "cargo", "env"] }
clap_complete = "*"
xdg = "2.1"
log = "0.4"
env_logger = "0.10.0"
users = "0.11"
aws-sdk-sts = "0.21.0"
aws-sdk-iam = "0.21.0"
aws-sdk-ssm = "0.21.0"
aws-sdk-secretsmanager = "0.21.0"
aws-config = "0.51.0"
aws-smithy-http = "0.51.0"
aws-smithy-types = "0.51.0"
aws-types = "0.51.0"
azure_core = "0.8.0"
azure_identity = "0.9.0"
azure_security_keyvault = "0.8.0"
time = "0.3.17"
reqwest = "0.11.13"
tokio = { version = "1", features = ["full"] }
convert_case = "0.5.0"
async-trait = "0.1.68"
anyhow = { version = "1.0", features = ["backtrace"] }
rand = "0.5"
# Use our own version as AWS client is not yet merged in mainstream. See https://github.com/jmgilman/vaultrs/pull/58
vaultrs = { git = "https://github.com/PierreBeucher/vaultrs", rev="aws-se-2023-05-15" }
url = "2.3.1"
schemars = "0.8.10"
http = "0.2"
crc32c = "0.6"
sha2 = "0.10.6"
digest = "0.10.6"
home = "0.5.5"
google-secretmanager1 = "5.0.2"
dialoguer = "0.11.0"
console = "0.15.7"
# Use OpenSSL vendored dependencies on Linux musl
# As somehow musl fails to build from source
[target.x86_64-unknown-linux-musl.dependencies]
openssl = { version = "0.10.62", features = ["vendored"] }
[target.aarch64-unknown-linux-musl.dependencies]
openssl = { version = "0.10.62", features = ["vendored"] }
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[dev-dependencies]
pretty_assertions = "1.3.0"
tempfile = "3.8.1"
[profile.test]
incremental = true
opt-level = 0
debug = 1
lto = false
debug-assertions = true
overflow-checks = true
rpath = false