Skip to content

Commit 9221bf8

Browse files
authored
chore(deps): Update dependencies and use strict versions (#980)
1 parent 883cdc6 commit 9221bf8

3 files changed

Lines changed: 34 additions & 34 deletions

File tree

Cargo.toml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -15,43 +15,43 @@ categories = ["development-tools"]
1515
authors = ["The Nova Team"]
1616

1717
[workspace.dependencies]
18-
ahash = "0.8.12"
19-
clap = { version = "4.6.0", features = ["derive"] }
20-
cliclack = "0.5.2"
21-
console = "0.16.3"
22-
ctrlc = "3.5.2"
23-
ecmascript_atomics = { version = "0.2.3" }
24-
fast-float = "0.2.0"
25-
hashbrown = "0.16.1"
26-
lexical = { version = "7.0.5", default-features = false, features = [
18+
ahash = "=0.8.12"
19+
clap = { version = "=4.6.0", features = ["derive"] }
20+
cliclack = "=0.5.4"
21+
console = "=0.16.3"
22+
ctrlc = "=3.5.2"
23+
ecmascript_atomics = { version = "=0.2.3" }
24+
fast-float = "=0.2.0"
25+
hashbrown = "=0.17.0"
26+
lexical = { version = "=7.0.5", default-features = false, features = [
2727
"std",
2828
"write-integers",
2929
"write-floats",
3030
"radix",
3131
] }
32-
num-bigint = "0.4.6"
33-
num-traits = "0.2.19"
34-
oxc-miette = { version = "2.7.0", features = ["fancy"] }
35-
oxc_allocator = "0.122.0"
36-
oxc_ast = "0.122.0"
37-
oxc_diagnostics = "0.122.0"
38-
oxc_ecmascript = "0.122.0"
39-
oxc_parser = "0.122.0"
40-
oxc_regular_expression = "0.122.0"
41-
oxc_semantic = "0.122.0"
42-
oxc_span = "0.122.0"
43-
oxc_syntax = "0.122.0"
44-
rand = "0.10.0"
45-
regex = "1.12.3"
46-
ryu-js = "1.0.2"
47-
soavec = "0.2.0"
48-
soavec_derive = "0.2.0"
49-
sonic-rs = "0.5.7"
50-
unicode-normalization = "0.1.25"
51-
usdt = "0.6.0"
52-
wtf8 = "0.1"
53-
xsum = "0.1.6"
54-
temporal_rs = "0.2.0"
32+
num-bigint = "=0.4.6"
33+
num-traits = "=0.2.19"
34+
oxc-miette = { version = "=2.7.1", features = ["fancy"] }
35+
oxc_allocator = "=0.124.0"
36+
oxc_ast = "=0.124.0"
37+
oxc_diagnostics = "=0.124.0"
38+
oxc_ecmascript = "=0.124.0"
39+
oxc_parser = "=0.124.0"
40+
oxc_regular_expression = "=0.124.0"
41+
oxc_semantic = "=0.124.0"
42+
oxc_span = "=0.124.0"
43+
oxc_syntax = "=0.124.0"
44+
rand = "=0.10.1"
45+
regex = "=1.12.3"
46+
ryu-js = "=1.0.2"
47+
soavec = "=0.2.0"
48+
soavec_derive = "=0.2.0"
49+
sonic-rs = "=0.5.8"
50+
unicode-normalization = "=0.1.25"
51+
usdt = "=0.6.0"
52+
wtf8 = "=0.1.0"
53+
xsum = "=0.1.6"
54+
temporal_rs = "=0.2.3"
5555

5656
[workspace.metadata.dylint]
5757
libraries = [{ path = "nova_lint" }]

nova_vm/src/ecmascript/scripts_and_modules/module/module_semantics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl<'r> ModuleRequest<'r> {
107107
.with_entries
108108
.iter()
109109
.map(|attr| {
110-
let key = attr.key.as_atom().as_str();
110+
let key = attr.key.as_arena_str().as_str();
111111
let value = attr.value.value.as_str();
112112
(key, value)
113113
})

tests/metrics.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"unresolved": 37
99
},
1010
"total": 50733
11-
}
11+
}

0 commit comments

Comments
 (0)