Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
logankeenan committed Sep 27, 2024
1 parent 3c2cf6f commit c09423d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 9 additions & 9 deletions adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
8 changes: 4 additions & 4 deletions example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c09423d

Please sign in to comment.