Skip to content

Commit 00143ae

Browse files
chore: upgrade all dependencies to latest versions
- Rust toolchain: 1.85 → 1.93 - Workspace deps: serde 1.0.228, serde_json 1.0.149, thiserror 2.0.18, anyhow 1.0.101, log 0.4.29, env_logger 0.11.9, async-trait 0.1.89, tokio 1.49.0, criterion 0.8.2, mockall 0.14.0, tempfile 3.25.0, tokio-test 0.4.5 - Per-crate deps: tree-sitter 0.26.5, tree-sitter-css 0.25.0, libc 0.2.182, windows 0.62.2, cbindgen 0.29.2 - pnpm: 10.6.3 → 10.29.3 - VitePress: 1.6.3 → 1.6.4 - turbo.json: migrate deprecated 'pipeline' key to 'tasks'
1 parent c63935f commit 00143ae

10 files changed

Lines changed: 312 additions & 252 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ license = "MIT"
1616
repository = "https://github.com/microsoft/webui"
1717

1818
[workspace.dependencies]
19-
serde = { version = "1.0.219", features = ["derive"] }
20-
serde_json = "1.0"
21-
thiserror = "2.0.12"
22-
anyhow = "1.0"
23-
log = "0.4.27"
24-
env_logger = "0.11.6"
25-
async-trait = "0.1"
26-
tokio = { version = "1.44.2", features = ["full"] }
19+
serde = { version = "1.0.228", features = ["derive"] }
20+
serde_json = "1.0.149"
21+
thiserror = "2.0.18"
22+
anyhow = "1.0.101"
23+
log = "0.4.29"
24+
env_logger = "0.11.9"
25+
async-trait = "0.1.89"
26+
tokio = { version = "1.49.0", features = ["full"] }
2727

2828
# Test dependencies
29-
criterion = "0.5.1"
30-
mockall = "0.13.1"
31-
tempfile = "3.19.1"
32-
tokio-test = "0.4.4"
29+
criterion = "0.8.2"
30+
mockall = "0.14.0"
31+
tempfile = "3.25.0"
32+
tokio-test = "0.4.5"
3333

3434
[profile.release]
3535
lto = true

crates/webui-ffi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ webui-handler = { path = "../webui-handler" }
1616
webui-protocol = { path = "../webui-protocol" }
1717
serde = { workspace = true }
1818
serde_json = { workspace = true }
19-
libc = "0.2.170"
19+
libc = "0.2.182"
2020

2121
# Platform-specific dependencies
2222
[target.'cfg(target_os = "windows")'.dependencies]
23-
windows = { version = "0.60.0", features = [
23+
windows = { version = "0.62.2", features = [
2424
"Win32_Foundation",
2525
"Win32_System_LibraryLoader",
2626
"Win32_System_Console",
2727
] }
2828

2929
[build-dependencies]
30-
cbindgen = "0.28.0"
30+
cbindgen = "0.29.2"

crates/webui-handler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ html-escape = "0.2.13"
1818

1919
[dev-dependencies]
2020
webui-test-utils = { path = "../webui-test-utils" }
21-
tokio = { version = "1.44.2", features = ["full"] }
21+
tokio = { version = "1.49.0", features = ["full"] }

crates/webui-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ serde_json = { workspace = true }
1515
thiserror = { workspace = true }
1616
anyhow = { workspace = true }
1717
tokio = { workspace = true }
18-
tree-sitter = "0.25.3"
18+
tree-sitter = "0.26.5"
1919
tree-sitter-html = "0.23.2"
20-
tree-sitter-css = "0.23.2"
20+
tree-sitter-css = "0.25.0"
2121
tree-sitter-typescript = "0.23.2"
2222
walkdir = "2.5.0"
2323
lazy_static = "1.5.0"

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"preview": "vitepress preview"
1010
},
1111
"devDependencies": {
12-
"vitepress": "^1.6.3"
12+
"vitepress": "^1.6.4"
1313
}
1414
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
},
1414
"author": "Microsoft Edge",
1515
"license": "MIT",
16-
"packageManager": "pnpm@10.6.3"
16+
"packageManager": "pnpm@10.29.3"
1717
}

pnpm-lock.yaml

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

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.85"
2+
channel = "1.93"

turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"pipeline": {
3+
"tasks": {
44
"build": {
55
"dependsOn": ["^build"],
66
"outputs": ["dist/**", "!dist/cache/**"]

0 commit comments

Comments
 (0)