-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port "Add missing serde derives on some Protobuf definitions" (tender…
…mint-rs#1389)
- Loading branch information
Showing
10 changed files
with
497 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
// Re-export according to alloc::prelude::v1 because it is not yet stabilized | ||
// https://doc.rust-lang.org/src/alloc/prelude/v1.rs.html | ||
|
||
#[allow(unused_imports)] | ||
pub use alloc::vec; | ||
#![allow(unused_imports)] | ||
|
||
pub use alloc::{ | ||
borrow::ToOwned, | ||
format, | ||
string::{String, ToString}, | ||
vec, | ||
vec::Vec, | ||
}; | ||
pub use core::prelude::v1::*; |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.