mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-27 04:50:31 +00:00
deps: fix minimum dependencies
This commit is contained in:
parent
f4665d0a53
commit
41e4f15a42
2
.github/workflows/CI.yml
vendored
2
.github/workflows/CI.yml
vendored
@ -134,8 +134,6 @@ jobs:
|
|||||||
save-if: ${{ github.ref == 'refs/heads/main' }}
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
||||||
- name: Select minimal version
|
- name: Select minimal version
|
||||||
run: cargo +nightly update -Z minimal-versions
|
run: cargo +nightly update -Z minimal-versions
|
||||||
- name: Fix up Cargo.lock
|
|
||||||
run: cargo +nightly update -p crc32fast --precise 1.1.1
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: >
|
run: >
|
||||||
cargo +${{ env.MSRV }}
|
cargo +${{ env.MSRV }}
|
||||||
|
1491
Cargo.lock
generated
1491
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -59,5 +59,9 @@ hyper = "1.0.0"
|
|||||||
tokio = { version = "1.25.0", features = ["macros"] }
|
tokio = { version = "1.25.0", features = ["macros"] }
|
||||||
tower-http = { version = "0.6.0", features = ["limit"] }
|
tower-http = { version = "0.6.0", features = ["limit"] }
|
||||||
|
|
||||||
|
# We do not depend on this but we need to force minimal version
|
||||||
|
crc32fast = "1.1.1"
|
||||||
|
lazy_static = "1.5.0"
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -95,7 +95,7 @@ http-body-util = "0.1.0"
|
|||||||
mime = "0.3"
|
mime = "0.3"
|
||||||
pin-project-lite = "0.2"
|
pin-project-lite = "0.2"
|
||||||
rustversion = "1.0.9"
|
rustversion = "1.0.9"
|
||||||
serde = "1.0"
|
serde = "1.0.166"
|
||||||
tower = { version = "0.5.2", default-features = false, features = ["util"] }
|
tower = { version = "0.5.2", default-features = false, features = ["util"] }
|
||||||
tower-layer = "0.3"
|
tower-layer = "0.3"
|
||||||
tower-service = "0.3"
|
tower-service = "0.3"
|
||||||
|
@ -87,7 +87,7 @@ __private = ["tokio", "http1", "dep:reqwest"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum-core = { path = "../axum-core", version = "0.5.2" }
|
axum-core = { path = "../axum-core", version = "0.5.2" }
|
||||||
bytes = "1.0"
|
bytes = "1.7"
|
||||||
futures-core = "0.3"
|
futures-core = "0.3"
|
||||||
futures-sink = "0.3"
|
futures-sink = "0.3"
|
||||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
@ -173,7 +173,7 @@ tokio = { package = "tokio", version = "1.44.2", features = ["macros", "rt", "rt
|
|||||||
tokio-stream = "0.1"
|
tokio-stream = "0.1"
|
||||||
tokio-tungstenite = "0.26.0"
|
tokio-tungstenite = "0.26.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = { version = "0.3", features = ["json"] }
|
tracing-subscriber = { version = "0.3", features = ["json", "tracing"] }
|
||||||
uuid = { version = "1.0", features = ["serde", "v4"] }
|
uuid = { version = "1.0", features = ["serde", "v4"] }
|
||||||
|
|
||||||
[dev-dependencies.tower]
|
[dev-dependencies.tower]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user