Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: dtolnay/[email protected]
- uses: actions/checkout@v4
with:
submodules: true
Expand All @@ -35,6 +36,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: dtolnay/[email protected]

- uses: actions/checkout@v4
with:
submodules: true
Expand Down Expand Up @@ -81,6 +84,7 @@ jobs:
needs: worker-build
runs-on: ubuntu-latest
steps:
- uses: dtolnay/[email protected]
- uses: actions/checkout@v4
with:
submodules: true
Expand Down Expand Up @@ -119,6 +123,10 @@ jobs:
name: Formatter
runs-on: ubuntu-latest
steps:
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy

- uses: actions/checkout@v4
with:
submodules: true
Expand Down Expand Up @@ -148,6 +156,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: dtolnay/[email protected]
- uses: actions/checkout@v4
with:
submodules: true
Expand Down
56 changes: 22 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "1.82.0"
2 changes: 1 addition & 1 deletion test/container-echo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "container-echo"
version = "0.1.4"
edition = "2024"
edition = "2021"

[dependencies]
axum = { version = "0.8.4", features = ["ws"] }
Expand Down
2 changes: 1 addition & 1 deletion test/container-echo/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use std::io;

use axum::{
Router,
body::Body,
extract::ws::{WebSocket, WebSocketUpgrade},
response::Response,
routing::{get, post},
Router,
};
use tokio::net::TcpListener;

Expand Down
2 changes: 1 addition & 1 deletion wasm-bindgen
Submodule wasm-bindgen updated 259 files
2 changes: 1 addition & 1 deletion worker-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "This is a tool to be used as a custom build command for a Cloudfl
[dependencies]
anyhow = "1.0.98"
binary-install = "0.4.1"
cargo_metadata = "0.22.0"
cargo_metadata = "0.20.0"
clap = { version = "4.5", features = ['derive'] }
console = "0.16.0"
dirs-next = "2.0"
Expand Down