Skip to content

Commit

Permalink
chore(all): update to the latest runwasi
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <[email protected]>
  • Loading branch information
Mossaka committed Nov 7, 2023
1 parent efe6e08 commit 87f3015
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion containerd-shim-lunatic/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-lunatic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
containerd-shim-wasm = { git = "https://github.com/mossaka/runwasi", rev = "25ff925e9b2c50d1d72b79a3003b381a599c0b65" }
containerd-shim-wasm = { git = "https://github.com/containerd/runwasi", rev = "c768e5b0919ca02903a301bf82a390489437dabe" }
log = "~0.4"
anyhow = "1.0.72"
chrono = { version = "0.4.26", features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-lunatic/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ mod common;
mod engine;

fn main() {
shim_main::<Instance<engine::LunaticEngine>>("lunatic", version!(), revision!(), None, None);
shim_main::<Instance<engine::LunaticEngine>>("lunatic", version!(), revision!(), "v1", None);
}
2 changes: 1 addition & 1 deletion containerd-shim-slight/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-slight/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Containerd shim for running Slight workloads.
"""

[dependencies]
containerd-shim-wasm = { git = "https://github.com/mossaka/runwasi", rev = "25ff925e9b2c50d1d72b79a3003b381a599c0b65" }
containerd-shim-wasm = { git = "https://github.com/containerd/runwasi", rev = "c768e5b0919ca02903a301bf82a390489437dabe" }
log = "0.4"
tokio = { version = "1", features = [ "full" ] }
slight = { git = "https://github.com/deislabs/spiderlightning", version = "0.5.1" }
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-slight/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ use containerd_shim_wasm::sandbox::cli::{revision, shim_main, version};
mod engine;

fn main() {
shim_main::<Instance<engine::SlightEngine>>("slight", version!(), revision!(), None, None);
shim_main::<Instance<engine::SlightEngine>>("slight", version!(), revision!(), "v1", None);
}
2 changes: 1 addition & 1 deletion containerd-shim-spin/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-spin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Containerd shim for running Spin workloads.
"""

[dependencies]
containerd-shim-wasm = { git = "https://github.com/mossaka/runwasi", rev = "25ff925e9b2c50d1d72b79a3003b381a599c0b65" }
containerd-shim-wasm = { git = "https://github.com/containerd/runwasi", rev = "c768e5b0919ca02903a301bf82a390489437dabe" }
log = "0.4"
spin-app = { git = "https://github.com/fermyon/spin", tag = "v2.0.0" }
spin-core = { git = "https://github.com/fermyon/spin", tag = "v2.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-spin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ use containerd_shim_wasm::sandbox::cli::{revision, shim_main, version};
mod engine;

fn main() {
shim_main::<Instance<engine::SpinEngine>>("spin", version!(), revision!(), Some("v2"), None);
shim_main::<Instance<engine::SpinEngine>>("spin", version!(), revision!(), "v2", None);
}
2 changes: 1 addition & 1 deletion containerd-shim-wws/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-wws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Containerd shim for running Wasm Workers Server workloads.

[dependencies]
anyhow = "1.0"
containerd-shim-wasm = { git = "https://github.com/mossaka/runwasi", rev = "25ff925e9b2c50d1d72b79a3003b381a599c0b65" }
containerd-shim-wasm = { git = "https://github.com/containerd/runwasi", rev = "c768e5b0919ca02903a301bf82a390489437dabe" }
wasm-workers-server = { git = "https://github.com/vmware-labs/wasm-workers-server", tag = "v1.7.0" }
log = "0.4"
tokio = { version = "1", features = [ "full" ] }
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-wws/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ use containerd_shim_wasm::sandbox::cli::{revision, shim_main, version};
mod engine;

fn main() {
shim_main::<Instance<engine::WwsEngine>>("wws", version!(), revision!(), None, None);
shim_main::<Instance<engine::WwsEngine>>("wws", version!(), revision!(), "v1", None);
}

0 comments on commit 87f3015

Please sign in to comment.