-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (79 loc) · 2.64 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (79 loc) · 2.64 KB
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
75
76
77
78
79
80
81
82
[workspace]
members = [
"secretspec",
"secretspec-derive",
"libsecretspec",
"secretspec-node",
"secretspec-php",
"secretspec-py",
]
resolver = "2"
[workspace.package]
version = "0.20.0"
edition = "2024"
[workspace.dependencies]
clap = { version = "4.0", features = ["derive", "env"] }
clap_complete = { version = "4.6", features = ["unstable-dynamic"] }
clap_complete_nushell = "4.6"
is_executable = "1.0"
keyring = "4.1.6"
keepass = { version = "0.13.17", features = ["save_kdbx4"] }
keeper-secrets-manager-core = { version = "17.3.0", default-features = false, features = ["blocking"] }
libc = "0.2"
signal-hook = "0.4"
serde = { version = "1.0", features = ["derive"] }
toml = "1.1"
toml_edit = { version = "0.25", features = ["serde"] }
thiserror = "2.0"
etcetera = "0.11"
colored = "3.0"
dotenv = { package = "dotenv-ng", version = "1.0.0" }
dunce = "1.0"
inquire = { version = "0.9.4", default-features = false, features = ["console", "experimental-multiline-input"] }
miette = { version = "7.6", features = ["fancy"] }
serde_json = "1.0"
ini = { package = "rust-ini", version = "0.21.3" }
proptest = "1"
tempfile = "3.0"
same-file = "1.0"
http = "1.0"
url = "2.5.4"
percent-encoding = "2.3"
wait-timeout = "0.2"
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_System_Diagnostics_ToolHelp", "Win32_System_JobObjects", "Win32_System_Threading"] }
whoami = "2.0"
syn = "2.0"
quote = "1.0"
proc-macro2 = "1.0"
trybuild = "1.0"
insta = "1.34"
linkme = "0.3"
jiff = "0.2"
secrecy = { version = "0.10.3", features = ["serde"] }
base64 = "0.22"
google-cloud-secretmanager-v1 = "1.2"
aws-config = "1"
aws-sdk-secretsmanager = "1"
aws-sdk-ssm = "1"
azure_core = "1.0.0"
azure_identity = "1.0.0"
azure_security_keyvault_secrets = "1.0.0"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls-native-roots"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
secretspec-derive = { version = "0.20.0", path = "./secretspec-derive" }
secretspec = { version = "0.20.0", path = "./secretspec" }
secretspec-core = { package = "secretspec", version = "0.20.0", path = "./secretspec" }
rand = "0.10"
rsa = { version = "0.9", features = ["pem"] }
uuid = { version = "1", features = ["serde", "v4"] }
data-encoding = "2"
sha2 = "0.10"
detect-coding-agent = "0.1"
age = { version = "0.12", features = ["armor", "plugin", "ssh"] }
kube = { version = "4.2", default-features = false, features = ["client", "rustls-tls", "aws-lc-rs", "jsonpatch"] }
k8s-openapi = { version = "0.28", features = ["v1_36"] }
json-patch = "4.2.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"