-
Notifications
You must be signed in to change notification settings - Fork 90
/
Cargo.toml
58 lines (54 loc) · 1.67 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
[workspace]
members = [
"crates/containerd-shim-wasm",
"crates/containerd-shim-wasm-test-modules",
"crates/wasi-demo-app",
"crates/oci-tar-builder",
"crates/containerd-shim-wasmedge",
"crates/containerd-shim-wasmtime",
"crates/containerd-shim-wasmer",
"benches/containerd-shim-benchmarks",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.4.0"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/containerd/runwasi"
homepage = "https://github.com/containerd/runwasi"
[workspace.dependencies]
anyhow = "1.0"
cap-std = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
containerd-shim = "0.7.4"
containerd-shim-wasm = { path = "crates/containerd-shim-wasm", version = "0.7.0" }
containerd-shim-wasm-test-modules = { path = "crates/containerd-shim-wasm-test-modules", version = "0.4.0"}
oci-tar-builder = { path = "crates/oci-tar-builder", version = "0.4.0" }
crossbeam = { version = "0.8.4", default-features = false }
env_logger = "0.11"
libc = "0.2.159"
libcontainer = { version = "0.4.1", default-features = false }
log = "0.4"
nix = "0.29"
oci-spec = { version = "0.6.8", features = ["runtime"] }
protobuf = "=3.2"
serde = "1.0"
serde_json = "1.0"
sha256 = "1.5.0"
tar = "0.4"
tempfile = "3.10"
thiserror = "1.0"
wat = "1.219"
windows-sys = "0.59"
serial_test = "3"
tracing = "0.1"
hyper = "1.5.0"
tokio = { version = "1.40.0", default-features = false }
tokio-util = { version = "0.7", default-features = false }
# wasmtime
wasmtime = { version = "26.0.0", features = ["async"] }
wasmtime-wasi = { version = "26.0.0" }
wasmtime-wasi-http = { version = "26.0.0" }
[profile.release]
panic = "abort"