From 2b031f225e6813ab6102a9801dca58face338999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 10 Apr 2026 20:05:45 +0300 Subject: [PATCH] Use `allow(missing_docs)` in benches --- belt-mac/benches/mod.rs | 1 + cbc-mac/benches/mod.rs | 1 + cmac/benches/mod.rs | 1 + pmac/benches/mod.rs | 1 + retail-mac/benches/mod.rs | 1 + 5 files changed, 5 insertions(+) diff --git a/belt-mac/benches/mod.rs b/belt-mac/benches/mod.rs index 8433217..c0e396a 100644 --- a/belt-mac/benches/mod.rs +++ b/belt-mac/benches/mod.rs @@ -1,4 +1,5 @@ #![feature(test)] +#![allow(missing_docs)] extern crate test; use belt_mac::{BeltMac, KeyInit}; diff --git a/cbc-mac/benches/mod.rs b/cbc-mac/benches/mod.rs index acc55ca..9d6d8a0 100644 --- a/cbc-mac/benches/mod.rs +++ b/cbc-mac/benches/mod.rs @@ -1,4 +1,5 @@ #![feature(test)] +#![allow(missing_docs)] extern crate test; use aes::Aes128; diff --git a/cmac/benches/mod.rs b/cmac/benches/mod.rs index 76b71e7..3d3e08e 100644 --- a/cmac/benches/mod.rs +++ b/cmac/benches/mod.rs @@ -1,4 +1,5 @@ #![feature(test)] +#![allow(missing_docs)] extern crate test; use aes::{Aes128, Aes256}; diff --git a/pmac/benches/mod.rs b/pmac/benches/mod.rs index 996a281..5736914 100644 --- a/pmac/benches/mod.rs +++ b/pmac/benches/mod.rs @@ -1,4 +1,5 @@ #![feature(test)] +#![allow(missing_docs)] extern crate test; use aes::{Aes128, Aes256}; diff --git a/retail-mac/benches/mod.rs b/retail-mac/benches/mod.rs index adf8ee5..49909f7 100644 --- a/retail-mac/benches/mod.rs +++ b/retail-mac/benches/mod.rs @@ -1,4 +1,5 @@ #![feature(test)] +#![allow(missing_docs)] extern crate test; use aes::Aes128;