UltraMachine / rust-sc2

SC2 API for Rust
MIT License
38 stars 19 forks source link

Update tungstenite requirement from ^0.13.0 to ^0.14.0 #23

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Updates the requirements on tungstenite to permit the latest version.

Changelog

Sourced from tungstenite's changelog.

0.14.0

  • Use rustls-native-certs instead of webpki-root when rustls-tls feature is enabled.
  • Don't use native-tls as a default feature (see #202 for more details).
  • New fast and safe implementation of the reading buffer (replacement for the input_buffer).
  • Remove some errors from the Error enum that can't be triggered anymore with the new buffer implementation.

0.13.0

  • Add CapacityError, UrlError, and ProtocolError types to represent the different types of capacity, URL, and protocol errors respectively.
  • Modify variants Error::Capacity, Error::Url, and Error::Protocol to hold the above errors types instead of string error messages.
  • Add handshake::derive_accept_key to facilitate external handshakes.
  • Add support for rustls as TLS backend. The previous tls feature flag is now removed in favor of native-tls and rustls-tls, which allows to pick the TLS backend. The error API surface had to be changed to support the new error types coming from rustls related crates.

0.12.0

  • Add facilities to allow clients to follow HTTP 3XX redirects.
  • Allow accepting unmasked clients on the server side to be compatible with some legacy / invalid clients.
  • Update of dependencies and documentation fixes.
Commits
  • 6f56461 Update the changelog
  • 32f4106 Bump version
  • 25a7f9e Trigger the CI/CD for Travis
  • c742916 Merge pull request #214 from snapview/faster-input-buffer
  • 83722c2 Clean up the read portion of the buffer
  • ddddd79 Implement benchmarks for buffers
  • 2787031 Replace InputBuffer with a faster alternative
  • 8c3172c Merge pull request #205 from yusdacra/master
  • a729b37 Update src/client.rs
  • 9a4fff4 Merge pull request #207 from teymour-aldridge/patch-1
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
danielvschoor commented 3 years ago

As far as I can tell, the improvements made on this version results in about 2x performance increase in tungstenite: PR