Skip to content

Commit 4457042

Browse files
authored
feat(ecmascript): Atomics.wait, Atomics.waitAsync, Atomics.notify (#895)
1 parent d581ac3 commit 4457042

File tree

43 files changed

+1843
-551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1843
-551
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
matrix:
6767
os:
6868
[
69-
"macos-13",
69+
"macos-14",
7070
"macos-latest",
7171
"ubuntu-24.04-arm",
7272
"ubuntu-latest",

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
asset-name: nova-linux-arm64
2727

2828
# macOS (Intel)
29-
- os: macos-13
29+
- os: macos-14
3030
rust-target: x86_64-apple-darwin
3131
asset-name: nova-macos-amd64
3232

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ clap = { version = "4.5.48", features = ["derive"] }
2020
cliclack = "0.3.6"
2121
console = "0.15.11"
2222
ctrlc = "3.5.0"
23-
ecmascript_atomics = "=0.2.2"
23+
ecmascript_atomics = { version = "0.2.3" }
24+
ecmascript_futex = { version = "0.1.0" }
2425
fast-float = "0.2.0"
2526
hashbrown = "0.16.0"
2627
lexical = { version = "7.0.5", default-features = false, features = [

0 commit comments

Comments
 (0)