Skip to content

Commit

Permalink
chore: add additional clippy allow for rust release 1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinAtEinride committed Oct 21, 2022
1 parent daf0141 commit 09dadf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/Cargo.toml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ edition = "2018"
bytes = "1.0"
prost = "0.11.0"
prost-types = "0.11.1"
prost-reflect = {version="0.9.2", features = [
"derive",
]}
prost-reflect = {version="0.9.2", features = ["derive"]}
tonic = "0.8.2"
once_cell = "1.15.0"
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ fn main() -> Result<()> {
scope.raw("#![allow(clippy::wrong_self_convention)]");
scope.raw("#![allow(clippy::large_enum_variant)]");
scope.raw("#![allow(clippy::unreadable_literal)]");
scope.raw("#![allow(clippy::derive_partial_eq_without_eq)]");

// Adding getter for descriptor pool
scope.raw("use prost_reflect::DescriptorPool;");
Expand Down

0 comments on commit 09dadf3

Please sign in to comment.