-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* `client-worker`: replace `wasm-pack build` with a script This enables us to pass the `--split-linked-modules` flag to `wasm-bindgen`, which we can't do through `wasm-pack`. * `client-worker`: pin Rust toolchain * `client-worker`: add support for Wasm atomics * `flake.nix`: use nightly Rust * `client-worker`: add support for running applications * `extension`: run in an offscreen page * `sample-app`: add support for querying the counter application * Bump `linera-protocol`
- Loading branch information
Showing
30 changed files
with
6,707 additions
and
687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
[target.wasm32-unknown-unknown] | ||
rustflags = ["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals"] | ||
|
||
[unstable] | ||
build-std = ["panic_abort", "std"] | ||
|
||
[build] | ||
target = "wasm32-unknown-unknown" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
/target | ||
/pkg | ||
Cargo.lock |
Oops, something went wrong.