-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 974 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "mistletoe"
description = "Mistletoe - the Polyglot Kubernetes Package Manager"
readme = "README.md"
repository = "https://github.com/gsfraley/mistletoe.git"
license = "Apache-2.0"
version = "0.1.2"
edition = "2021"
[[bin]]
name = "mistctl"
[dependencies]
anyhow = "1.0"
clap = "4.4"
colored = "2.1"
git2 = "0.18"
home = "0.5"
indexmap = "2.1"
indoc = "2.0"
k8s-openapi = { version = "0.20", features = ["v1_28"] }
kube = "0.87"
once_cell = "1.19"
semver = "1.0"
serde = "1.0"
serde_yaml = "0.9"
tempfile = "3.8"
tokio = { version = "1.35", features = ["full"] }
wasmer = "4.2"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.52", features = [
"Win32", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_Foundation"
] }
[dependencies.mistletoe-api]
path = "./mistletoe-api"
version = "0.1.2"
[workspace]
members = [
"mistletoe-api",
"mistletoe-bind",
"mistletoe-macros",
]
exclude = [
"examples/namespace-example",
]