Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tokio-rs/bytes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.6.0
Choose a base ref
...
head repository: tokio-rs/bytes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Jul 12, 2024

  1. Fix Bytes::is_unique when created from shared BytesMut (#718)

    The `is_unique` entry in the vtable for `Bytes` created from a shared
    `BytesMut` just called the `shared_is_unique` function from the `bytes`
    module. However, that function dereferences the `data` argument` as
    `bytes::Shared`, but the actual underlying type is `bytes_mut::Shared`.
    zyxw59 authored Jul 12, 2024
    Configuration menu
    Copy the full SHA
    6b4b0ed View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2024

  1. Configuration menu
    Copy the full SHA
    fd13c7d View commit details
    Browse the repository at this point in the history
Loading