Skip to content

Commit

Permalink
0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk authored Aug 8, 2022
1 parent 2939ba1 commit 9a857d2
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eszip"
version = "0.22.0"
version = "0.23.0"
authors = ["the Deno authors"]
edition = "2021"
repository = "https://github.com/denoland/eszip"
Expand All @@ -23,7 +23,7 @@ path = "src/lib.rs"
anyhow = "1"
base64 = "0.13.0"
deno_ast = { version = "0.17.0", features = ["transpiling"] }
deno_graph = "0.29.0"
deno_graph = "0.30.0"
futures = "0.3.19"
serde = "1"
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eszip_wasm"
version = "0.19.0"
version = "0.23.0"
authors = ["the Deno authors"]
edition = "2021"
description = "A utility that can download JavaScript and TypeScript module graphs and store them locally in a special zip file"
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib"]
[dependencies]
js-sys = { version = "0.3.58" }
web-sys = { version = "0.3.58", features = ["ReadableStreamByobReader"] }
deno_graph = "0.29.0"
deno_graph = "0.30.0"
eszip = { path = "../" }
wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4.31" }
Expand Down
30 changes: 15 additions & 15 deletions lib/eszip_wasm.generated.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @generated file from wasmbuild -- do not edit
// deno-lint-ignore-file
// deno-fmt-ignore-file
// source-hash: c44c879ece8f9ffb8033e70bda454f8d6f6cee11
// source-hash: 8f948671193c40dc42402d4ee40bcb569b49b553
let wasm;

const heap = new Array(32).fill(undefined);
Expand Down Expand Up @@ -141,7 +141,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
}
function __wbg_adapter_18(arg0, arg1, arg2) {
wasm
._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hb7d7cc81b599fca7(
._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h101f7ae4b828942d(
arg0,
arg1,
addHeapObject(arg2),
Expand Down Expand Up @@ -173,7 +173,7 @@ function handleError(f, args) {
}
}
function __wbg_adapter_50(arg0, arg1, arg2, arg3) {
wasm.wasm_bindgen__convert__closures__invoke2_mut__h20365d617bd8ce0f(
wasm.wasm_bindgen__convert__closures__invoke2_mut__ha159bd268e82f9ac(
arg0,
arg1,
addHeapObject(arg2),
Expand Down Expand Up @@ -308,14 +308,6 @@ const imports = {
getInt32Memory0()[arg0 / 4 + 1] = len0;
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
},
__wbg_new_2ab697f1555e0dbc: function () {
const ret = new Array();
return addHeapObject(ret);
},
__wbg_push_811c8b08bf4ff9d5: function (arg0, arg1) {
const ret = getObject(arg0).push(getObject(arg1));
return ret;
},
__wbg_new_651776e932b7e9c7: function (arg0, arg1) {
const ret = new Error(getStringFromWasm0(arg0, arg1));
return addHeapObject(ret);
Expand All @@ -340,6 +332,14 @@ const imports = {
const ret = new Uint8Array(getObject(arg0));
return addHeapObject(ret);
},
__wbg_new_2ab697f1555e0dbc: function () {
const ret = new Array();
return addHeapObject(ret);
},
__wbg_push_811c8b08bf4ff9d5: function (arg0, arg1) {
const ret = getObject(arg0).push(getObject(arg1));
return ret;
},
__wbg_newwithlength_e833b89f9db02732: function (arg0) {
const ret = new Uint8Array(arg0 >>> 0);
return addHeapObject(ret);
Expand All @@ -348,7 +348,7 @@ const imports = {
const ret = getObject(arg0).read(getObject(arg1));
return addHeapObject(ret);
},
__wbg_done_da3aeb42b914ceb3: function (arg0) {
__wbg_done_a283bd8c10285c69: function (arg0) {
const ret = getObject(arg0).done;
return ret;
},
Expand All @@ -361,7 +361,7 @@ const imports = {
const ret = getObject(arg0).toString();
return addHeapObject(ret);
},
__wbg_value_3abfdf541f08d2a1: function (arg0) {
__wbg_value_6b7f3275cb4b36c4: function (arg0) {
const ret = getObject(arg0).value;
return isLikeNone(ret) ? 0 : addHeapObject(ret);
},
Expand Down Expand Up @@ -452,8 +452,8 @@ const imports = {
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
return addHeapObject(ret);
},
__wbindgen_closure_wrapper9025: function (arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 130, __wbg_adapter_18);
__wbindgen_closure_wrapper9030: function (arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 131, __wbg_adapter_18);
return addHeapObject(ret);
},
},
Expand Down
Binary file modified lib/eszip_wasm_bg.wasm
Binary file not shown.

0 comments on commit 9a857d2

Please sign in to comment.