-
Notifications
You must be signed in to change notification settings - Fork 151
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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: v2.0.0-alpha.9
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: servo/rust-smallvec
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 13 commits
- 6 files changed
- 7 contributors
Commits on Dec 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a176a87 - Browse repository at this point
Copy the full SHA a176a87View commit details
Commits on Jan 15, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 1289db6 - Browse repository at this point
Copy the full SHA 1289db6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a23ebf - Browse repository at this point
Copy the full SHA 9a23ebfView commit details
Commits on Mar 11, 2025
-
Implement
MallocSizeOf
for SmallVec (v2) (#369)* Implement MallocSizeOf for SmallVec (v2) Signed-off-by: Nico Burns <[email protected]> * Bump malloc_size_of crate to version with lower MSRV Signed-off-by: Nico Burns <[email protected]> --------- Signed-off-by: Nico Burns <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 30c30a6 - Browse repository at this point
Copy the full SHA 30c30a6View commit details
Commits on Mar 20, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 4aaa028 - Browse repository at this point
Copy the full SHA 4aaa028View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2390f2d - Browse repository at this point
Copy the full SHA 2390f2dView commit details
Commits on Mar 21, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 395763c - Browse repository at this point
Copy the full SHA 395763cView commit details
Commits on Apr 28, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 6ba116c - Browse repository at this point
Copy the full SHA 6ba116cView commit details -
* v2: Bump MSRV to 1.83 * Run GitHub checks on merge_group
Configuration menu - View commit details
-
Copy full SHA for 3906fe4 - Browse repository at this point
Copy the full SHA 3906fe4View commit details
Commits on May 27, 2025
-
Configuration menu - View commit details
-
Copy full SHA for dff2390 - Browse repository at this point
Copy the full SHA dff2390View commit details -
Update the
extract_if
feature (#381)* Update the `extract_if` feature * doctest
Configuration menu - View commit details
-
Copy full SHA for 05ca4ed - Browse repository at this point
Copy the full SHA 05ca4edView commit details
Commits on May 30, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 4fe4068 - Browse repository at this point
Copy the full SHA 4fe4068View commit details
Commits on Jun 5, 2025
-
Shrink code produced by
smallvec![]
. (#385)Currently `smallvec![]` expands to this: ``` { let count = 0usize; #[allow(unused_mut)] let mut vec = ::smallvec::SmallVec::new(); if count <= vec.capacity() { vec } else { ::smallvec::SmallVec::from_vec(::alloc::vec::Vec::new()) } }; ``` This commit adds a rule to the `smallvec!` macro for the zero-length case so it instead expands to this: ``` ::smallvec::SmallVec::new() ``` The `std::vec!` macro already has a similar special case. This commit also improves the non-zero case. - It removes the `#[allow(unused_mut)]`, which was only needed for the zero-length case. - It changes the `*` repetitions to `+`. (Again, like `std::vec`.)
Configuration menu - View commit details
-
Copy full SHA for 71c8abb - Browse repository at this point
Copy the full SHA 71c8abbView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.0.0-alpha.9...v2