Skip to content

Commit

Permalink
chore(deps): bump hyper to "1.0.3" and remove unused features (Totodo…
Browse files Browse the repository at this point in the history
  • Loading branch information
Totodore committed Apr 15, 2024
1 parent 1b0f3b4 commit c4ead64
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ thiserror = "1.0.40"
tracing = "0.1.37"
itoa = "1.0.10"
hyper-util.version = "0.1.1"
hyper = { version = "1.0.1", features = ["http1", "http2", "server"] }
hyper = "1.0.3"
pin-project-lite = "0.2.13"

# Dev deps
Expand Down
2 changes: 1 addition & 1 deletion e2e/heaptrack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
socketioxide = { path = "../../socketioxide" }
hyper = { workspace = true, features = ["server", "http1", "http2"] }
hyper = { workspace = true, features = ["server", "http1"] }
hyper-util = { workspace = true, features = ["tokio"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "signal"] }
rust_socketio = { version = "0.4.2", features = ["async"] }
Expand Down
1 change: 1 addition & 0 deletions engineioxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ unicode-segmentation = { version = "1.10.1", optional = true }
[dev-dependencies]
tokio = { workspace = true, features = ["macros", "parking_lot"] }
tracing-subscriber.workspace = true
hyper = { workspace = true, features = ["server", "http1"] }
criterion.workspace = true
axum.workspace = true
hyper-util = { workspace = true, features = ["tokio", "client-legacy"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ tracing = "0.1.37"
tracing-subscriber = "0.3.18"
axum = "0.7.5"
hyper-util.version = "0.1.1"
hyper = { version = "1.0.1", features = ["http1", "http2", "server"] }
hyper = { version = "1.0.1", features = ["http1", "server"] }
2 changes: 1 addition & 1 deletion examples/hyper-echo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
socketioxide = { path = "../../socketioxide", features = ["tracing"] }
hyper = { workspace = true, features = ["server", "http1", "http2"] }
hyper = { workspace = true, features = ["server", "http1"] }
hyper-util = { workspace = true, features = ["tokio"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tracing-subscriber.workspace = true
Expand Down
1 change: 1 addition & 0 deletions socketioxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ tokio = { workspace = true, features = [
] }
tracing-subscriber.workspace = true
criterion.workspace = true
hyper = { workspace = true, features = ["server", "http1"] }
hyper-util = { workspace = true, features = ["tokio", "client-legacy"] }
http-body-util.workspace = true

Expand Down

0 comments on commit c4ead64

Please sign in to comment.