-
Notifications
You must be signed in to change notification settings - Fork 37
Comparing changes
Open a pull request
base repository: serde-rs/bytes
base: 0.11.12
head repository: serde-rs/bytes
compare: 0.11.13
- 16 commits
- 9 files changed
- 2 contributors
Commits on Sep 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 90c4fe9 - Browse repository at this point
Copy the full SHA 90c4fe9View commit details
Commits on Sep 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6c699f2 - Browse repository at this point
Copy the full SHA 6c699f2View commit details
Commits on Sep 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7ffee6f - Browse repository at this point
Copy the full SHA 7ffee6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 95d9f83 - Browse repository at this point
Copy the full SHA 95d9f83View commit details
Commits on Oct 7, 2023
-
Ignore into_iter_without_iter pedantic clippy lint
warning: `IntoIterator` implemented for a reference type without an `iter` method --> src/bytes.rs:137:1 | 137 | / impl<'a> IntoIterator for &'a Bytes { 138 | | type Item = &'a u8; 139 | | type IntoIter = <&'a [u8] as IntoIterator>::IntoIter; 140 | | ... | 143 | | } 144 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_without_iter = note: `-W clippy::into-iter-without-iter` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::into_iter_without_iter)]` help: consider implementing `iter` | 137 + 138 + impl Bytes { 139 + fn iter(&self) -> <&'a [u8] as IntoIterator>::IntoIter { 140 + <&Self as IntoIterator>::into_iter(self) 141 + } 142 + } | warning: `IntoIterator` implemented for a reference type without an `iter_mut` method --> src/bytes.rs:146:1 | 146 | / impl<'a> IntoIterator for &'a mut Bytes { 147 | | type Item = &'a mut u8; 148 | | type IntoIter = <&'a mut [u8] as IntoIterator>::IntoIter; 149 | | ... | 152 | | } 153 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_without_iter help: consider implementing `iter_mut` | 146 + 147 + impl Bytes { 148 + fn iter_mut(&mut self) -> <&'a mut [u8] as IntoIterator>::IntoIter { 149 + <&mut Self as IntoIterator>::into_iter(self) 150 + } 151 + } | warning: `IntoIterator` implemented for a reference type without an `iter` method --> src/bytebuf.rs:167:1 | 167 | / impl<'a> IntoIterator for &'a ByteBuf { 168 | | type Item = &'a u8; 169 | | type IntoIter = <&'a [u8] as IntoIterator>::IntoIter; 170 | | ... | 173 | | } 174 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_without_iter help: consider implementing `iter` | 167 + 168 + impl ByteBuf { 169 + fn iter(&self) -> <&'a [u8] as IntoIterator>::IntoIter { 170 + <&Self as IntoIterator>::into_iter(self) 171 + } 172 + } | warning: `IntoIterator` implemented for a reference type without an `iter_mut` method --> src/bytebuf.rs:176:1 | 176 | / impl<'a> IntoIterator for &'a mut ByteBuf { 177 | | type Item = &'a mut u8; 178 | | type IntoIter = <&'a mut [u8] as IntoIterator>::IntoIter; 179 | | ... | 182 | | } 183 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_without_iter help: consider implementing `iter_mut` | 176 + 177 + impl ByteBuf { 178 + fn iter_mut(&mut self) -> <&'a mut [u8] as IntoIterator>::IntoIter { 179 + <&mut Self as IntoIterator>::into_iter(self) 180 + } 181 + } |
Configuration menu - View commit details
-
Copy full SHA for deb9c32 - Browse repository at this point
Copy the full SHA deb9c32View commit details
Commits on Oct 18, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 51cc56b - Browse repository at this point
Copy the full SHA 51cc56bView commit details
Commits on Dec 27, 2023
-
Merge pull request #28 from sgued/byte-array
Add support for `[u8; N]`
Configuration menu - View commit details
-
Copy full SHA for 5da9904 - Browse repository at this point
Copy the full SHA 5da9904View commit details -
Configuration menu - View commit details
-
Copy full SHA for 15970a2 - Browse repository at this point
Copy the full SHA 15970a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cd6ddb - Browse repository at this point
Copy the full SHA 7cd6ddbView commit details -
Merge pull request #45 from serde-rs/copybytearray
Implement Copy for ByteArray<N>
Configuration menu - View commit details
-
Copy full SHA for 7c664c0 - Browse repository at this point
Copy the full SHA 7c664c0View commit details -
Ignore ptr_as_ptr pedantic clippy lint
warning: `as` casting between raw pointers without changing its mutability --> src/bytearray.rs:55:20 | 55 | unsafe { &*(bytes as *const [u8; N] as *const ByteArray<N>) } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try `pointer::cast`, a safer alternative: `(bytes as *const [u8; N]).cast::<ByteArray<N>>()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_as_ptr = note: `-W clippy::ptr-as-ptr` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::ptr_as_ptr)]`
Configuration menu - View commit details
-
Copy full SHA for 677457b - Browse repository at this point
Copy the full SHA 677457bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e1f53b2 - Browse repository at this point
Copy the full SHA e1f53b2View commit details -
Merge pull request #46 from serde-rs/refbytearray
Support deserializing `&'de [u8; N]`
Configuration menu - View commit details
-
Copy full SHA for 0d92965 - Browse repository at this point
Copy the full SHA 0d92965View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1772017 - Browse repository at this point
Copy the full SHA 1772017View commit details -
Merge pull request #47 from serde-rs/nostd-deserialize
Unconditional serde_bytes::deserialize
Configuration menu - View commit details
-
Copy full SHA for bd341f2 - Browse repository at this point
Copy the full SHA bd341f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 76caff6 - Browse repository at this point
Copy the full SHA 76caff6View commit details
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 0.11.12...0.11.13