-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (26 loc) · 915 Bytes
/
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
[package]
name = "vaultier"
version = "0.4.1"
edition = "2021"
authors = ["Mathias Oertel <mathias.oertel@commercetools.com>", "Nelu Snegur <nelu.snegur@commercetools.com>", "Andreas Drobisch <andreas.drobisch@commercetools.com>"]
description = "Crate to write and read secrets from Hashicorp Vault."
documentation = "https://docs.rs/vaultier"
readme = "README.md"
keywords = ["secrets", "vault", "hashicorp"]
license = "MIT"
repository = "https://github.com/commercetools/vaultier"
[dependencies]
serde = "1.0"
vaultrs = "0.7"
thiserror = "2.0"
reqwest = { version = "0.12", default-features = false, features = ["json"], optional = true }
serde_json = { version = "1.0", optional = true }
url = { version = "2.5", optional = true }
[features]
default = ["token", "read"]
token = []
auth = []
read = []
write = []
metadata = ["reqwest", "serde_json", "url"]
full = ["token", "auth", "read", "write", "metadata"]