Skip to content

Commit

Permalink
fix(Cargo.toml): add comment and move serial_test to workspace
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <[email protected]>
  • Loading branch information
Mossaka committed Nov 1, 2023
1 parent ec1524f commit 84f53cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ thiserror = "1.0"
ttrpc = "0.8.0"
wat = "1.0"
windows-sys = "0.48"
serial_test = "2"

[profile.release]
panic = "abort"
1 change: 1 addition & 0 deletions crates/containerd-shim-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ futures = { version = "0.3.29" }

[target.'cfg(unix)'.dependencies]
caps = "0.5"
# this must match the version pulled by libcontainer
dbus = { version = "0", features = ["vendored"] }
libcontainer = { workspace = true, features = ["libseccomp", "systemd", "v1", "v2"]}
nix = { workspace = true, features = ["sched", "mount"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/containerd-shim-wasmedge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ wasmedge-sdk = { version = "0.12.2" }
[dev-dependencies]
containerd-shim-wasm = { workspace = true, features = ["testing"] }
libc = { workspace = true }
serial_test = "2"
serial_test = { workspace = true }

[features]
default = ["standalone", "static"]
Expand Down
2 changes: 1 addition & 1 deletion crates/containerd-shim-wasmer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ wasmer-wasix = { version = "0.12.0" }

[dev-dependencies]
containerd-shim-wasm = { workspace = true, features = ["testing"] }
serial_test = "2"
serial_test = { workspace = true }

[[bin]]
name = "containerd-shim-wasmer-v1"
Expand Down
2 changes: 1 addition & 1 deletion crates/containerd-shim-wasmtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ wasi-common = "11.0"

[dev-dependencies]
containerd-shim-wasm = { workspace = true, features = ["testing"] }
serial_test = "2"
serial_test = { workspace = true }

[[bin]]
name = "containerd-shim-wasmtime-v1"
Expand Down

0 comments on commit 84f53cd

Please sign in to comment.