Skip to content

Commit ef05a54

Browse files
authored
Adds missing UpgradeResponseParts export (#56)
* Adds missing export * Bumps version
1 parent b67c064 commit ef05a54

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "1.2.0"
17+
version = "1.2.1"
1818
authors = ["Swim Inc. developers [email protected]"]
1919
edition = "2021"
2020
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
2121
license = "Apache-2.0"
2222

2323
[workspace.dependencies]
24-
ratchet = { package = "ratchet_rs", version = "1.2.0", path = "ratchet_rs" }
25-
ratchet_core = { version = "1.2.0", path = "ratchet_core" }
26-
ratchet_ext = { version = "1.2.0", path = "ratchet_ext" }
27-
ratchet_deflate = { version = "1.2.0", path = "ratchet_deflate" }
28-
ratchet_fixture = { version = "1.2.0", path = "ratchet_fixture" }
24+
ratchet = { package = "ratchet_rs", version = "1.2.1", path = "ratchet_rs" }
25+
ratchet_core = { version = "1.2.1", path = "ratchet_core" }
26+
ratchet_ext = { version = "1.2.1", path = "ratchet_ext" }
27+
ratchet_deflate = { version = "1.2.1", path = "ratchet_deflate" }
28+
ratchet_fixture = { version = "1.2.1", path = "ratchet_fixture" }
2929

3030
url = "2.1.1"
3131
http = "1.1.0"

ratchet_core/src/handshake/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub use client::{subscribe, subscribe_with, UpgradedClient};
3838
pub use server::{
3939
accept, accept_with, build_response, build_response_headers, handshake, parse_request_parts,
4040
response_from_headers, validate_method_and_version, UpgradeRequest, UpgradeRequestParts,
41-
UpgradedServer, WebSocketResponse, WebSocketUpgrader,
41+
UpgradeResponseParts, UpgradedServer, WebSocketResponse, WebSocketUpgrader,
4242
};
4343
pub use subprotocols::*;
4444

ratchet_core/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,6 @@ pub mod server {
8181
pub use crate::handshake::{
8282
build_response, build_response_headers, handshake, parse_request_parts,
8383
response_from_headers, validate_method_and_version, UpgradeRequest, UpgradeRequestParts,
84+
UpgradeResponseParts,
8485
};
8586
}

0 commit comments

Comments
 (0)