Skip to content

Commit

Permalink
Update Cargo.toml to allow minor and patch-level dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
logankeenan committed Sep 9, 2023
1 parent 9817154 commit 1b18915
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ crate-type = ["cdylib", "lib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = { version = "0.6.19", default-features = false }
worker = { version = "0.0.18"}
http-body = "0.4.5"
axum-wasm-macros = "0.1.0"
axum = { version = "^0.6.19", default-features = false }
worker = { version = "^0.0.18" }
http-body = "^0.4.5"
axum-wasm-macros = "^0.1.0"

[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.34"
wasm-bindgen-futures = "^0.4.34"
wasm-bindgen = "^0.2.84"
tower-service = "^0.3.2"

0 comments on commit 1b18915

Please sign in to comment.