Skip to content

Commit 55dd00f

Browse files
author
Michael Ward
committed
[Rust] updated LibRsDef.generate() to add "#![allow(clippy::all)]"
1 parent 0caf77e commit 55dd00f

File tree

1 file changed

+1
-1
lines changed
  • sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/rust

1 file changed

+1
-1
lines changed

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/rust/LibRsDef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void generate(final Ir ir) throws IOException
6060
try (Writer libRs = outputManager.createOutput("lib"))
6161
{
6262
indent(libRs, 0, "#![forbid(unsafe_code)]\n");
63-
indent(libRs, 0, "#![allow(clippy::upper_case_acronyms)]\n");
63+
indent(libRs, 0, "#![allow(clippy::all)]\n");
6464
indent(libRs, 0, "#![allow(non_camel_case_types)]\n\n");
6565
indent(libRs, 0, "#![allow(ambiguous_glob_reexports)]\n\n");
6666
indent(libRs, 0, "use ::core::{convert::TryInto};\n\n");

0 commit comments

Comments
 (0)