Skip to content

Commit

Permalink
various and sundry upgrades
Browse files Browse the repository at this point in the history
* bump dependencies
* upgrade to bun 1.2.2 with text lock file
* upgrade to rust 1.84.1
  • Loading branch information
tylerbarker committed Feb 3, 2025
1 parent 07f02b7 commit 7e7337f
Show file tree
Hide file tree
Showing 8 changed files with 1,506 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
name: Build + test with Bun v${{matrix.bun_version}}, wasm-bindgen v${{matrix.wasm_bindgen_version}}
strategy:
matrix:
bun_version: ["1.1.42"]
wasm_bindgen_version: ["0.2.99"]
bun_version: ["1.2.2"]
wasm_bindgen_version: ["0.2.100"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bun 1.1.42
bun 1.2.2
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUN_VERSION=1.1.42
ARG BUN_VERSION=1.2.2
FROM oven/bun:${BUN_VERSION} AS builder

# Install OS deps
Expand Down
8 changes: 4 additions & 4 deletions acrate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"]

[dependencies]
wasm-bindgen = "0.2.99"
wasm-bindgen = "0.2.100"

# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.7", optional = true }
web-sys = { version = "0.3.70" }
js-sys = "0.3.70"
web-sys = { version = "0.3.77" }
js-sys = "0.3.77"

[dev-dependencies]
wasm-bindgen-test = "0.3.49"
wasm-bindgen-test = "0.3.50"

[profile.release]
# Tell `rustc` to optimize for small code size.
Expand Down
1,483 changes: 1,483 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

Binary file removed bun.lockb
Binary file not shown.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,31 @@
"start": "vinxi start"
},
"devDependencies": {
"@happy-dom/global-registrator": "^15.11.7",
"@tanstack/react-query-devtools": "^5.62.10",
"@tanstack/router-devtools": "^1.92.3",
"@tanstack/router-plugin": "^1.91.1",
"@happy-dom/global-registrator": "^16.8.1",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/router-devtools": "^1.99.0",
"@tanstack/router-plugin": "^1.99.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"bun-types": "^1.1.42",
"bun-types": "^1.2.2",
"chokidar": "^4.0.3",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"concurrently": "^9.1.2",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"vite": "^6.0.5",
"vite": "^6.0.11",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.4.1",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"@tanstack/react-query": "^5.62.9",
"@tanstack/react-router": "^1.92.3",
"@tanstack/start": "^1.92.4",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-router": "^1.99.0",
"@tanstack/start": "^1.99.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vinxi": "^0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.83.0"
channel = "1.84.1"
components = ["rust-analyzer", "clippy"]
targets = ["wasm32-unknown-unknown"]

0 comments on commit 7e7337f

Please sign in to comment.