-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
67 lines (62 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
authors = [
"Matt Butcher <[email protected]>",
"Matthew Fisher <[email protected]>",
"Radu Matei <[email protected]>",
"Taylor Thomas <[email protected]>",
"Brian Ketelsen <[email protected]>",
"Brian Hardock <[email protected]>",
"Ryan Levick <[email protected]>",
"Kevin Flansburg <[email protected]>",
]
default-run = "krustlet-wagi"
description = "A Krustlet Provider implementation in Rust for running WAGI modules in Kubernetes"
edition = "2018"
exclude = ["docs/*", "demos/*", ".github/*", ".gitignore"]
keywords = ["wasm", "wasi", "wagi", "webassembly", "kubernetes"]
license = "Apache-2.0"
name = "krustlet-wagi-provider"
readme = "README.md"
repository = "https://github.com/deislabs/krustlet-wagi-provider"
version = "0.1.0"
[badges]
maintenance = {status = "actively-developed"}
[features]
default = ["native-tls"]
native-tls = [
"kube/native-tls",
"krator/kube-native-tls",
"kubelet/kube-native-tls",
"wagi-provider/native-tls",
"oci-distribution/native-tls",
]
rustls-tls = [
"kube/rustls-tls",
"krator/rustls-tls",
"kubelet/rustls-tls",
"wagi-provider/rustls-tls",
"oci-distribution/rustls-tls",
]
[dependencies]
anyhow = "1.0"
dirs = {package = "dirs-next", version = "2.0.0"}
futures = "0.3"
hostname = "0.3"
k8s-openapi = {version = "0.12", default-features = false, features = ["v1_21"]}
krator = {version = "0.4", default-features = false}
kube = {version = "0.58", default-features = false}
kubelet = {git = "https://github.com/krustlet/krustlet", tag = "v1.0.0-alpha.1", version = "1.0.0-alpha.1", default-features = false, features = ["cli"]}
oci-distribution = {git = "https://github.com/krustlet/krustlet", tag = "v1.0.0-alpha.1", version = "0.7", default-features = false}
regex = "1.3"
serde = "1.0"
tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "time"]}
tracing-subscriber = "0.2"
wagi-provider = {path = "./crates/wagi-provider", version = "0.1.0", default-features = false}
notify = "=5.0.0-pre.10"
[workspace]
members = [
"crates/wagi-provider",
]
[[bin]]
name = "krustlet-wagi"
path = "src/krustlet-wagi.rs"