Skip to main content

firefly_sudo/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3#![deny(
4    clippy::pedantic,
5    clippy::alloc_instead_of_core,
6    clippy::allow_attributes,
7    clippy::std_instead_of_alloc,
8    clippy::std_instead_of_core,
9    clippy::expect_used,
10    clippy::unwrap_used
11)]
12#![allow(clippy::wildcard_imports)]
13#![expect(clippy::cast_possible_truncation, clippy::iter_without_into_iter)]
14
15#[cfg(feature = "alloc")]
16extern crate alloc;
17
18pub mod sudo;