diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c5c0e51..7200cff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,9 +27,9 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - - uses: jetli/wasm-pack-action@v0.4.0 - with: - version: "latest" + # - uses: jetli/wasm-pack-action@v0.4.0 + # with: + # version: "latest" - run: make build # - name: Upload artifact # uses: actions/upload-pages-artifact@v3 diff --git a/Cargo.lock b/Cargo.lock index 6ed9467..546859d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -363,9 +363,9 @@ checksum = "7f83c80655e94407bd7763aedbe1b9cab74389e6f07d43f47ab671c7ce7d8b44" [[package]] name = "tzf-rs" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "395b7648e560b0a6436eb426626bcf6e7ee7c341470a2a2c03fc412181e92a7e" +checksum = "ac1e3c8edcb1045e2d9645c0f77834d74be9c2b19b7f699dc1058dfefa8b85fd" dependencies = [ "anyhow", "bytes", @@ -377,7 +377,7 @@ dependencies = [ [[package]] name = "tzf-wasm" -version = "0.1.6" +version = "0.1.7" dependencies = [ "getrandom 0.2.15", "tzf-rs", diff --git a/Cargo.toml b/Cargo.toml index 5e4485f..7878a0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tzf-wasm" -version = "0.1.6" +version = "0.1.7" edition = "2021" description = "A wasm library for tzf-rs" repository = "https://github.com/ringsaturn/tzf-wasm" @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] wasm-bindgen = "0.2.100" -tzf-rs = { version = "0.4.11", default-features = false } +tzf-rs = { version = "0.4.12", default-features = false } getrandom = { version = "0.2", features = ["js"] } [dev-dependencies]