1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-24 23:01:05 +03:00

Add missing clippy lints in mas-axum-utils

This commit is contained in:
Quentin Gliech
2022-08-08 09:55:19 +02:00
parent c1ed726dc8
commit d00bf6a2d2
5 changed files with 22 additions and 10 deletions

View File

@@ -12,6 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#![forbid(unsafe_code)]
#![deny(clippy::all, clippy::str_to_string, rustdoc::broken_intra_doc_links)]
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions, clippy::missing_errors_doc)]
pub mod client_authorization;
pub mod cookies;
pub mod csrf;