4 Commits
Author SHA1 Message Date
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27e0ecc293 chore(deps): bump talc from 5.0.3 to 5.0.4 (#3)
Bumps [talc](https://github.com/SFBdragon/talc) from 5.0.3 to 5.0.4.
- [Release notes](https://github.com/SFBdragon/talc/releases)
- [Commits](https://github.com/SFBdragon/talc/commits)

---
updated-dependencies:
- dependency-name: talc
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-24 04:15:26 +02:00
breakingbread 59cd38b35b fix: export init as value type in index.d.ts
- bump version to 0.6.6
2026-06-14 06:52:06 +02:00
breakingbread a841ee1313 fix: export init only 2026-06-14 05:48:19 +02:00
breakingbread ac63099741 feat: add webpack export condition and init type declaration
bump to 0.6.5
2026-06-14 05:30:25 +02:00
5 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
- name: Setup Node - name: Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4
with: with:
node-version: '24.15.0' node-version: '24.16.0'
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
- name: Install wasm-pack - name: Install wasm-pack
Generated
+3 -3
View File
@@ -57,7 +57,7 @@ dependencies = [
[[package]] [[package]]
name = "blake3-wasm-rs" name = "blake3-wasm-rs"
version = "0.6.3" version = "0.6.6"
dependencies = [ dependencies = [
"blake3", "blake3",
"hex", "hex",
@@ -343,9 +343,9 @@ dependencies = [
[[package]] [[package]]
name = "talc" name = "talc"
version = "5.0.3" version = "5.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3081e3f3ad542dc4cd0ae720f752598f8880fd364dc2d031132e3509f673aa23" checksum = "40a5888b3189a89207eea4190e74387b5db3150d213f84186cac637dcd55259d"
dependencies = [ dependencies = [
"allocator-api2", "allocator-api2",
"lock_api", "lock_api",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "blake3-wasm-rs" name = "blake3-wasm-rs"
version = "0.6.3" version = "0.6.6"
edition = "2024" edition = "2024"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
authors = ["Thomas <[email protected]>"] authors = ["Thomas <[email protected]>"]
+2 -1
View File
@@ -52,7 +52,8 @@ build-all:
exports: { '.': {\ exports: { '.': {\
types: './index.d.ts',\ types: './index.d.ts',\
node: { require: './node/$(CRATE).js', import: './node-esm/index.mjs' },\ node: { require: './node/$(CRATE).js', import: './node-esm/index.mjs' },\
import: './bundler/$(CRATE).js',\ webpack: './bundler/$(CRATE).js',\
import: './web/$(CRATE).js',\
default: './web/$(CRATE).js'\ default: './web/$(CRATE).js'\
}},\ }},\
files: ['bundler/', 'web/', 'node/', 'node-esm/', 'index.js', 'index.d.ts', '$(CRATE)_bg.wasm', '$(CRATE)_bg.js', 'README.md', 'LICENSE'],\ files: ['bundler/', 'web/', 'node/', 'node-esm/', 'index.js', 'index.d.ts', '$(CRATE)_bg.wasm', '$(CRATE)_bg.js', 'README.md', 'LICENSE'],\
+3 -1
View File
@@ -1,4 +1,6 @@
// SPDX-License-Identifier: MIT OR Apache-2.0 // SPDX-License-Identifier: MIT OR Apache-2.0
// Copyright 2026 Thomas <[email protected]> // Copyright 2026 Thomas <[email protected]>
// @ts-nocheck // @ts-nocheck
export { Hasher, deriveKey, hash, hashXof, keyedHash } from './bundler/blake3_wasm_rs'; export { Hasher, deriveKey, hash, hashXof, keyedHash } from './bundler/blake3_wasm_rs';
export { default } from './web/blake3_wasm_rs';