Skip to content

Commit 8928eed

Browse files
committed
Update oxc
1 parent 2116e88 commit 8928eed

File tree

5 files changed

+52
-52
lines changed

5 files changed

+52
-52
lines changed

Cargo.lock

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/devup-ui-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ css = { path = "../../libs/css" }
2727
console_error_panic_hook = { version = "0.1.7", optional = true }
2828
once_cell = "1.21.3"
2929
js-sys = "0.3.77"
30-
serde_json = "1.0.141"
30+
serde_json = "1.0.142"
3131
serde-wasm-bindgen = "0.6.5"
3232

3333
[dev-dependencies]

libs/extractor/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ version = "0.1.0"
44
edition = "2024"
55

66
[dependencies]
7-
oxc_parser = "0.78.0"
8-
oxc_syntax = "0.78.0"
9-
oxc_span = "0.78.0"
10-
oxc_allocator = "0.78.0"
11-
oxc_ast = "0.78.0"
12-
oxc_ast_visit = "0.78.0"
13-
oxc_codegen = "0.78.0"
7+
oxc_parser = "0.79.1"
8+
oxc_syntax = "0.79.1"
9+
oxc_span = "0.79.1"
10+
oxc_allocator = "0.79.1"
11+
oxc_ast = "0.79.1"
12+
oxc_ast_visit = "0.79.1"
13+
oxc_codegen = "0.79.1"
1414
css = { path = "../css" }
1515
phf = "0.12"
1616
strum = "0.27.2"

libs/extractor/src/css_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fn css_to_style_block<'a>(
108108
let property = iter.next().unwrap();
109109
let value = iter.next().unwrap();
110110
Some(ExtractStyleProp::Static(ExtractStyleValue::Static(
111-
ExtractStaticStyle::new(&property, value, level, selector.clone()),
111+
ExtractStaticStyle::new(property, value, level, selector.clone()),
112112
)))
113113
}
114114
})

libs/sheet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extractor = { path = "../extractor" }
1212

1313
[dev-dependencies]
1414
insta = "1.43.1"
15-
serde_json = "1.0.141"
15+
serde_json = "1.0.142"
1616
criterion = { version = "0.7", features = ["html_reports"] }
1717
rstest = "0.26.1"
1818

0 commit comments

Comments
 (0)