Skip to content

Commit

Permalink
chore: update to the main tip of runwasi and libcontainer (deislabs#138)
Browse files Browse the repository at this point in the history
* chore: update to the main tip of runwasi and libcontainer

Signed-off-by: jiaxiao zhou <[email protected]>
  • Loading branch information
Mossaka authored Sep 2, 2023
1 parent 99491b0 commit a7800ce
Show file tree
Hide file tree
Showing 34 changed files with 2,545 additions and 2,330 deletions.
300 changes: 205 additions & 95 deletions Cargo.lock

Large diffs are not rendered by default.

28 changes: 12 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
[package]
name = "containerd-wasm-shims-tests"
version = "0.7.0"
[workspace.package]
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/deislabs/containerd-wasm-shims"
homepage = "https://github.com/deislabs/containerd-wasm-shims"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

[dev-dependencies]
anyhow = "1"
tokio = { version = "1", features = ["full"] }
kube = { version = "0.82.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.18.0", features = ["v1_25"] }
http = "0.2"
tower = "0.4"
hyper = "0.14"
curl = "0.4"
rand = "0.8"
[workspace]
resolver = "2"
members = [
"utils",
"tests"
]
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ test/clean:
.PHONY: fmt
fmt:
$(foreach shim,$(SHIMS),cargo fmt --all --manifest-path=containerd-shim-$(shim)-v1/Cargo.toml -- --check;)
$(foreach shim,$(SHIMS),cargo clippy --all-targets --all-features --workspace --manifest-path=containerd-shim-$(shim)-v1/Cargo.toml -- -D warnings;)
$(foreach shim,$(SHIMS),cargo clippy --all-targets --all-features --workspace --manifest-path=containerd-shim-$(shim)-v1/Cargo.toml -- -D warnings;)
cargo fmt --all -- --check
cargo clippy --all-targets --all-features --workspace -- --deny=warnings

.PHONY: build
build: $(foreach shim,$(SHIMS),build-$(shim)-cross-$(TARGET))
Expand Down
Loading

0 comments on commit a7800ce

Please sign in to comment.