Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 1 addition & 77 deletions 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 ext/ruby_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crate-type = ["cdylib"]
magnus = { version = "0.8", features = ["bytes"] }
bytes = "1"
structopt = "0.3.26"
wit-component = "0.216.0"
wit-component = "0.244.0"
wasm-compose = "0.219.1"
wasi-virt = { git = "https://github.com/bytecodealliance/wasi-virt", rev = "dadd131d8cf8ed1ed4265e96350f5f166e27a339", default-features = false }
wasi-vfs-cli = { git = "https://github.com/kateinoigakukun/wasi-vfs/", tag = "v0.6.2" }
2 changes: 1 addition & 1 deletion ext/ruby_wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ impl ComponentEncode {

fn encode(&self) -> Result<bytes::Bytes, Error> {
// Take the encoder out of the cell and consume it
let encoder = self
let mut encoder = self
.0
.borrow_mut()
.take()
Expand Down
Loading