-
Notifications
You must be signed in to change notification settings - Fork 188
/
Cargo.toml
39 lines (31 loc) · 1.04 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
[workspace]
resolver = "2"
members = ["teller-cli", "teller-core", "teller-providers", "xtask"]
default-members = ["teller-cli"]
[workspace.package]
description = "A developer-first multi provider secret manager"
authors = ["Dotan Nahum <[email protected]>", "Elad Kaplan <[email protected]>"]
documentation = "https://docs.rs/teller/"
repository = "https://github.com/tellerops/teller"
keywords = ["vault", "secret", "devtool"]
license = "Apache-2.0"
readme = "./README.md"
[workspace.dependencies]
teller-providers = { version = "2.0.7", path = "./teller-providers" }
teller-core = { version = "2.0.7", path = "./teller-core" }
serde = "1"
serde_json = "1"
serde_yaml = "0.9"
serde_derive = "1"
serde_variant = "0.1.2"
async-trait = "0.1.80"
lazy_static = "1.4.0"
strum = { version = "0.25", features = ["derive"] }
shell-words = "1"
duct = "0.13.6"
thiserror = "1.0.49"
aho-corasick = "1"
tokio = { version = "1", features = ["full"] }
tera = { version = "1" }
# dev deps
insta = { version = "1.29.0", features = ["redactions", "yaml", "filters"] }