@raviqqe/stak 0.10.21 → 0.10.23

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/README.md CHANGED
@@ -16,7 +16,7 @@ Stak Scheme aims to be:
16
16
  - A subset of [Chibi Scheme](https://github.com/ashinn/chibi-scheme), [Gauche](https://github.com/shirok/Gauche), and [Guile](https://www.gnu.org/software/guile/)
17
17
  - A portable scripting environment that supports even no-`std` and no-`alloc` platforms
18
18
 
19
- For more information and usage, visit [the full documentation](https://raviqqe.github.io/stak/install).
19
+ For more information and usage, visit [the full documentation](https://raviqqe.com/stak/install).
20
20
 
21
21
  ## Install
22
22
 
@@ -163,7 +163,7 @@ fn run_scheme(module: &UniversalModule) -> Result<(), EngineError> {
163
163
  let mut engine = Engine::new(&mut heap, &mut functions)?;
164
164
 
165
165
  // Finally, run the module!
166
- engine.run_sync(module)
166
+ engine.run(module)
167
167
  }
168
168
  ```
169
169
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@raviqqe/stak",
3
3
  "type": "module",
4
4
  "description": "Stak Scheme in WebAssembly",
5
- "version": "0.10.21",
5
+ "version": "0.10.23",
6
6
  "license": "SEE LICENSE IN ../LICENSE",
7
7
  "repository": {
8
8
  "type": "git",
package/stak_wasm.js CHANGED
@@ -361,7 +361,7 @@ function __wbg_get_imports() {
361
361
  const ret = arg0.queueMicrotask;
362
362
  return ret;
363
363
  };
364
- imports.wbg.__wbg_readstdin_310623bfc6187ed2 = function() {
364
+ imports.wbg.__wbg_readstdin_672b2d5e541c7852 = function() {
365
365
  const ret = read_stdin();
366
366
  return ret;
367
367
  };
@@ -393,11 +393,11 @@ function __wbg_get_imports() {
393
393
  const ret = arg0.then(arg1, arg2);
394
394
  return ret;
395
395
  };
396
- imports.wbg.__wbg_writestderr_7751b86ce495b089 = function(arg0) {
396
+ imports.wbg.__wbg_writestderr_d99e06c077441dd5 = function(arg0) {
397
397
  const ret = write_stderr(arg0);
398
398
  return ret;
399
399
  };
400
- imports.wbg.__wbg_writestdout_b01a6ff3bb3ff54e = function(arg0) {
400
+ imports.wbg.__wbg_writestdout_be5e5b8b64fd76cd = function(arg0) {
401
401
  const ret = write_stdout(arg0);
402
402
  return ret;
403
403
  };
package/stak_wasm_bg.wasm CHANGED
Binary file