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: servo/rust-smallvec
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.0
Choose a base ref
...
head repository: servo/rust-smallvec
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.15.0
Choose a head ref
  • 7 commits
  • 6 files changed
  • 4 contributors

Commits on Mar 21, 2025

  1. Fix typos

    Also, remove an extraneous blank line.
    waywardmonkeys committed Mar 21, 2025
    Configuration menu
    Copy the full SHA
    36317fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c8751d View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2025

  1. Rename bincode dev-dependency to bincode1

    We want to add an optional dependency on bincode 2.  The MSRV of bincode 2
    is too high for us to use it in the tests, so rename the test usage to
    bincode1 in preparation.
    markbt authored and mbrubeck committed Apr 5, 2025
    Configuration menu
    Copy the full SHA
    0d019cd View commit details
    Browse the repository at this point in the history
  2. Add support for bincode encode and decode

    Add implementations for `bincode`'s `Encode`, `Decode` and `BorrowDecode`.
    
    Like `bincode` itself, we implement optimizations when the vector item is `u8` so that `SmallVec<[u8; N]>` can be encoded and decoded with just a memory copy.
    markbt authored and mbrubeck committed Apr 5, 2025
    Configuration menu
    Copy the full SHA
    35e7ffe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a2fb430 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    aeceb0a View commit details
    Browse the repository at this point in the history
  5. Versoin 1.15.0

    mbrubeck committed Apr 5, 2025
    Configuration menu
    Copy the full SHA
    7c4d350 View commit details
    Browse the repository at this point in the history
Loading