Skip to content

Commit 6980df6

Browse files
authored
Merge pull request #153 from Totodore/fix-hyper-util-version
chore(deps): specify version 0 for hyper util
2 parents 13d4323 + dced350 commit 6980df6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

e2e/engineioxide/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ hyper-v1 = { package = "hyper", version = "1.0.0-rc.4", features = [
2020
"server",
2121
"http1",
2222
] }
23-
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
23+
hyper-util = { git = "https://github.com/hyperium/hyper-util.git", version = "0" }
2424
hyper = { version = "0.14.26", features = ["server", "http1", "tcp"] }
2525
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
2626
tracing-subscriber.workspace = true

engineioxide/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ unicode-segmentation = { version = "1.10.1", optional = true }
3939
# Hyper v1.0
4040
hyper-v1 = { workspace = true, optional = true }
4141
http-body-v1 = { workspace = true, optional = true }
42-
hyper-util = { git = "https://github.com/hyperium/hyper-util.git", optional = true }
42+
hyper-util = { git = "https://github.com/hyperium/hyper-util.git", optional = true, version = "0" }
4343

4444
[dev-dependencies]
4545
tokio = { workspace = true, features = ["macros", "parking_lot"] }

examples/hyper-v1-echo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ socketioxide = { path = "../../socketioxide", features = [
1111
"tracing",
1212
] }
1313
hyper = { version = "1.0.0-rc.4", features = ["server", "http1", "http2"] }
14-
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
14+
hyper-util = { git = "https://github.com/hyperium/hyper-util.git", version = "0" }
1515
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
1616
tracing-subscriber.workspace = true
1717
tracing.workspace = true

socketioxide/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "../README.md"
1414

1515

1616
[dependencies]
17-
engineioxide = { path = "../engineioxide" }
17+
engineioxide = { path = "../engineioxide", version = "0.7.0" }
1818
futures.workspace = true
1919
tokio = { workspace = true, features = ["rt"] }
2020
serde.workspace = true

0 commit comments

Comments
 (0)