-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (40 loc) · 1.17 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
[workspace]
members = [
"bin",
"crates/kct_cli",
"crates/kct_compiler",
"crates/kct_helper",
"crates/kct_jsonnet",
"crates/kct_kube",
"crates/kct_package",
"crates/kct_testing"
]
[workspace.package]
version = "0.7.0"
edition = "2021"
license = "MIT"
authors = ["Bruno Felipe Leal Delfino <bruno.delfino1995@gmail.com>"]
repository = "https://github.com/bruno-delfino1995/kct"
[workspace.dependencies]
anyhow = "1.0.71"
assert_matches = "1.5.0"
async-trait = "0.1.72"
either = "1.9.0"
futures = "0.3.28"
jrsonnet-gcmodule = "0.3.3"
kct_cli = { path = "./crates/kct_cli", version = "=0.7.0"}
kct_compiler = { path = "./crates/kct_compiler", version = "=0.7.0"}
kct_helper = { path = "./crates/kct_helper", version = "=0.7.0"}
kct_jsonnet = { path = "./crates/kct_jsonnet", version = "=0.7.0"}
kct_kube = { path = "./crates/kct_kube", version = "=0.7.0"}
kct_package = { path = "./crates/kct_package", version = "=0.7.0"}
kct_testing = { path = "./crates/kct_testing", version = "=0.7.0"}
serde_json = "1.0.103"
serde_yaml = "0.8"
tera = "1.19.0"
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = ["full"] }
tracing = "0.1.37"
valico = "3.6.1"
[profile.release]
strip = "debuginfo"