diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 35594d1..37b7598 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.76.0 + toolchain: 1.81.0 target: wasm32-unknown-unknown override: true diff --git a/adapter/Cargo.toml b/adapter/Cargo.toml index 9247d98..c97c51c 100644 --- a/adapter/Cargo.toml +++ b/adapter/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.0" edition = "2021" authors = ["Logan Keenan"] description = "An adapter to easily run an Axum server in a Cloudflare worker." -rust-version = "1.66" +rust-version = "1.81.0" repository = "https://github.com/logankeenan/axum-cloudflare-adapter" license = "MIT" keywords = ["Cloudflare", "Axum", "WASM"] @@ -15,13 +15,13 @@ crate-type = ["cdylib", "lib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -axum = { version = "^0.7.1", default-features = false } -worker = { version = "^0.4.0" } -axum-wasm-macros = "^0.1.0" -futures = "0.3.29" +axum = { version = "^0.7.6", default-features = false } +worker = { version = "^0.4.1" } +axum-wasm-macros = "^0.1.2" +futures = "0.3.30" [dev-dependencies] -wasm-bindgen-test = "^0.3.34" -wasm-bindgen-futures = "^0.4.34" -wasm-bindgen = "^0.2.84" -tower-service = "^0.3.2" +wasm-bindgen-test = "^0.3.43" +wasm-bindgen-futures = "^0.4.43" +wasm-bindgen = "^0.2.93" +tower-service = "^0.3.3" diff --git a/example/Cargo.toml b/example/Cargo.toml index 0bd7df9..cec3fed 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -12,14 +12,14 @@ default = ["console_error_panic_hook"] [dependencies] cfg-if = "1.0.0" -axum = { version = "^0.7.1", default-features = false } +axum = { version = "^0.7.6", default-features = false } axum-cloudflare-adapter = { path = "../adapter" } oneshot = "0.1.8" serde_json = "1.0.128" -tower-service = "0.3.2" +tower-service = "0.3.3" url = "2.5.2" -wasm-bindgen-futures = "0.4.34" -worker = "^0.4.0" +wasm-bindgen-futures = "0.4.43" +worker = "^0.4.1" # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires