forked from snapview/tungstenite-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change tests to merge https://github.com/snapview/tungstenite-rs/pull/363 #1
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates the requirements on [webpki-roots](https://github.com/rustls/webpki-roots) to permit the latest version. - [Commits](rustls/webpki-roots@v/0.23.1...v/0.24.0) --- updated-dependencies: - dependency-name: webpki-roots dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Clarify `WebSocketConfig` docs
Add assert panics for `WebSocketConfig`
…-roots-0.24 Update webpki-roots requirement from 0.23 to 0.24
The byteorder dependency is only used in protocol::frame::frame. I thought this dependency could easily be removed and set out to replace the use of byteorder with equivalent std methods. NetworkEndian is an alias for BigEndian. Converting a number like u32 to bytes can be done via the std lib via .to_be_bytes(). The opposite direction is from_by_bytes(). These simple things thus to not need byteorder. There is one place in the code where byteorder actually helps, thus this dependency is not actually fully removed. ByteOrder::read_uint() allows to read 1 to 8 bytes of data and returns the result as u64. Doing this with the standard library basically requires re-implementing byteorder. Thus, I did not do that. Signed-off-by: Uli Schlachter <psychon@znc.in>
Co-authored-by: Daniel Abramov <inetcrack2@gmail.com>
Quick-and-dirty fix for CVE-2023-43669
Update Autobahn Test Suite page
Update `webpki-roots` to 0.25
Updates the requirements on [http](https://github.com/hyperium/http) to permit the latest version. - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](hyperium/http@v0.2.0...v1.0.0) --- updated-dependencies: - dependency-name: http dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Replace deprecated `net2` dev dependency with `socket2`
Update http requirement from 0.2 to 1.0
Reduce use of byteorder crate
Retry pong flushes on read. Add read_usage_auto_pong_flush scenario test
The code does not actually compile anymore with 1.51. Also only run `cargo check` with 1.60 as various optional features, tests, benchmarks actually require newer Rust versions.
* ADd builder for additional header values * Update client.rs * fix: docs * feat: add test * fix: typo * add --------- Co-authored-by: n4n5 <56606507+Its-Just-Nans@users.noreply.github.com> Co-authored-by: n4n5 <its.just.n4n5@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello,
Change tests to merge snapview#363