@haneullabs/walrus-wasm 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +55 -0
- package/Cargo.lock +2010 -0
- package/Cargo.toml +39 -0
- package/README.md +1 -0
- package/index.js +7 -0
- package/index.mjs +5 -0
- package/nodejs/walrus_wasm.d.ts +48 -0
- package/nodejs/walrus_wasm.js +560 -0
- package/nodejs/walrus_wasm_bg.wasm +0 -0
- package/nodejs/walrus_wasm_bg.wasm.d.ts +23 -0
- package/package.json +38 -0
- package/rust-toolchain.toml +3 -0
- package/src/bls12381.rs +47 -0
- package/src/encoder.rs +178 -0
- package/src/lib.rs +9 -0
- package/test/encoder.test.ts +260 -0
- package/vitest.config.mts +17 -0
- package/web/walrus_wasm.d.ts +95 -0
- package/web/walrus_wasm.js +626 -0
- package/web/walrus_wasm_bg.js +590 -0
- package/web/walrus_wasm_bg.wasm +0 -0
- package/web/walrus_wasm_bg.wasm.d.ts +23 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# @haneullabs/walrus-wasm
|
|
2
|
+
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 412ceb9: Write directly to JS array buffers instead of copying
|
|
8
|
+
|
|
9
|
+
## 0.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b456936: add type export to exports in package.json
|
|
14
|
+
|
|
15
|
+
## 0.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 1e537a8: Add support for fanOut proxy
|
|
20
|
+
|
|
21
|
+
## 0.0.6
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 981a39d: Add separate esm entrypoint
|
|
26
|
+
|
|
27
|
+
## 0.0.5
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 4389b36: Add support for customizing wasm url
|
|
32
|
+
|
|
33
|
+
## 0.0.4
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 3e9bb8d: add 'import' to walrus-wasm exports
|
|
38
|
+
|
|
39
|
+
## 0.0.3
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- ea2ce74: Add missing wasm bindings
|
|
44
|
+
|
|
45
|
+
## 0.0.2
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- 7d6e114: Fix walrus wasm bindings not working in bundled client applications
|
|
50
|
+
|
|
51
|
+
## 0.0.1
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- f81d84d: initial release
|