-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
105 lines (99 loc) · 3.16 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[package]
name = "kasmcloud"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.package]
authors = ["The KasmCloud Team", "Iceber Gu"]
categories = ["wasm"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/iceber/kasmcloud"
[dependencies]
anyhow = { workspace = true }
async-nats = { workspace = true }
async-trait = { workspace = true }
base64 = { workspace = true }
bytes = { workspace = true }
futures = { workspace = true }
http = { workspace = true }
k8s-openapi = { workspace = true }
kube = { workspace = true }
nkeys = { workspace = true }
opentelemetry = { workspace = true }
rmp-serde = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
serde_bytes = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-opentelemetry = { workspace = true }
ulid = { workspace = true }
url = { workspace = true }
uuid = { workspace = true }
wascap = { workspace = true }
wasmcloud-compat = { workspace = true }
wasmcloud-control-interface = { workspace = true }
wasmcloud-core = { workspace = true }
wasmcloud-host = { workspace = true }
wasmcloud-runtime = { workspace = true }
wasmcloud-tracing = { workspace = true }
kasmcloud-apis = { workspace = true }
kasmcloud-host = { workspace = true }
config = "0.13.3"
serde_derive = "1.0.188"
clap = { version = "4.4.2", features = [
"color",
"derive",
"env",
"error-context",
"help",
"std",
"suggestions",
"usage",
] }
chrono = { workspace = true }
names = "0.14.0"
lazy_static = "1.4.0"
[workspace]
members = []
[workspace.dependencies]
anyhow = "1.0.75"
async-nats = "0.31.0"
async-trait = "0.1.73"
base64 = "0.21.3"
bytes = "1.4.0"
futures = "0.3.28"
hex = "0.4"
http = "0.2.9"
k8s-openapi = { version = "0.19.0", features = ["schemars", "v1_27"]}
kube = { version = "0.85.0", features = ["gzip", "jsonpatch", "runtime", "derive", "unstable-runtime"] }
nkeys = "0.3.2"
opentelemetry = "0.20.0"
rmp-serde = "1.1.2"
schemars = "0.8.13"
serde = "1.0.188"
serde_json = "1.0.105"
serde_yaml = "0.9.25"
sha2 = "0.10"
thiserror = "1.0.47"
tokio = { version = "1.32.0", features = ["full"] }
tracing = "0.1.37"
tracing-opentelemetry = "0.21.0"
ulid = "1.0.1"
url = "2.4.1"
uuid = "1.4.1"
wascap = "0.11.1"
wasmcloud-compat = { git = "https://github.com/wasmcloud/wasmCloud", rev = "cdbc2fc99ef7a02efdc0fe4b8884247c20b2f314" }
wasmcloud-core = { git = "https://github.com/wasmcloud/wasmCloud", rev = "cdbc2fc99ef7a02efdc0fe4b8884247c20b2f314" }
wasmcloud-host = { git = "https://github.com/wasmcloud/wasmCloud", rev = "cdbc2fc99ef7a02efdc0fe4b8884247c20b2f314" }
wasmcloud-runtime = { git = "https://github.com/wasmcloud/wasmCloud", rev = "cdbc2fc99ef7a02efdc0fe4b8884247c20b2f314" }
wasmcloud-tracing = { git = "https://github.com/wasmcloud/wasmCloud", rev = "cdbc2fc99ef7a02efdc0fe4b8884247c20b2f314" }
wasmcloud-control-interface = "0.28.1"
kasmcloud-apis = { path = "./crates/apis" }
kasmcloud-host = { path = "./crates/host" }
serde_bytes = "0.11.12"
chrono = "0.4.29"