Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jan 25, 2024
1 parent c86eb61 commit ca2e376
Show file tree
Hide file tree
Showing 40 changed files with 1,979 additions and 407 deletions.
130 changes: 75 additions & 55 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ version = "0.1.0"

[workspace.dependencies]
anyhow = "1.0.79"
base64 = "0.21.5"
base64 = "0.21.7"
bitflags = "1.3.2"
env_logger = "0.10.0"
heck = { version = "0.4", features = ["unicode"] }
js-component-bindgen = { version = "0.14.2", no-default-features = ["transpile-bindgen"] }
js-component-bindgen = { version = "1.0.0", no-default-features = ["transpile-bindgen"] }
pulldown-cmark = { version = "0.8", default-features = false }
walrus = "0.20.3"
wasm-encoder = "0.38.1"
wasmparser = "0.118.1"
wasmprinter = "0.2.75"
wat = "1.0.82"
wasm-encoder = "0.40.0"
wasmparser = "0.120.0"
wasmprinter = "0.2.77"
wat = "1.0.84"
wit-bindgen = "0.16.0"
wit-bindgen-core = "0.16.0"
wit-component = { version = "0.19.0", features = ["dummy-module"] }
wit-parser = "0.13.0"
wit-component = { version = "0.20.0", features = ["dummy-module"] }
wit-parser = "0.13.1"
1 change: 0 additions & 1 deletion crates/spidermonkey-embedding-splicer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ impl Guest for SpidermonkeyEmbeddingSplicerComponent {
world,
StringEncoding::UTF8,
None,
Some(true),
)
.map_err(|e| e.to_string())?;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ world spidermonkey-embedding-splicer {
enum core-ty {
i32,
i64,
f32,
f64
%f32,
%f64
}

record core-fn {
Expand Down
Binary file modified lib/spidermonkey-embedding-splicer.core.wasm
Binary file not shown.
1 change: 0 additions & 1 deletion lib/spidermonkey-embedding-splicer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,5 @@ import { WasiFilesystemTypes } from './interfaces/wasi-filesystem-types.js';
import { WasiIoError } from './interfaces/wasi-io-error.js';
import { WasiIoStreams } from './interfaces/wasi-io-streams.js';
import { WasiRandomRandom } from './interfaces/wasi-random-random.js';
import { WasiSocketsTcp } from './interfaces/wasi-sockets-tcp.js';
export function stubWasi(engine: Uint8Array, stdout: boolean): Uint8Array;
export function spliceBindings(sourceName: string | undefined, spidermonkeyEngine: Uint8Array, witWorld: string | undefined, witPath: string | undefined, worldName: string | undefined): SpliceResult;
Loading

0 comments on commit ca2e376

Please sign in to comment.