-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rust: bump serde crates #3294
rust: bump serde crates #3294
Conversation
2730a65
to
0a9feaf
Compare
Codecov Report
@@ Coverage Diff @@
## master #3294 +/- ##
==========================================
- Coverage 65.28% 65.23% -0.06%
==========================================
Files 371 371
Lines 33039 33039
==========================================
- Hits 21571 21552 -19
- Misses 8273 8309 +36
+ Partials 3195 3178 -17
Continue to review full report at Codecov.
|
f998703
to
cddfca5
Compare
@@ -25,7 +25,6 @@ impl SessionID { | |||
/// Frame. | |||
#[derive(Debug, Serialize, Deserialize)] | |||
pub struct Frame { | |||
#[serde(with = "serde_bytes")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: serde_bytes
now internally uses serde_bytes::{Serialize,Deserialize}
traits, and is missing implementations for fixed sized byte arrays, so we cannot use it here anymore.
However serde_bytes
is not even needed here since we implement "byte-array aware" serde serialization and deserialization methods in impl_bytes!
anyway.
cddfca5
to
fa0bfab
Compare
Also removes explicit serde_derive crate, now used via the "derive" feature on the serde crate.
fa0bfab
to
70bdca0
Compare
Part of: #3245
TODO:
serde_bytes