firefly-sudo 0.14.2

SDK for accessing internal Firefly Zero API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]
#![no_std]
#![deny(
    clippy::pedantic,
    clippy::alloc_instead_of_core,
    clippy::allow_attributes,
    clippy::std_instead_of_alloc,
    clippy::std_instead_of_core,
    clippy::expect_used,
    clippy::unwrap_used
)]
#![allow(clippy::wildcard_imports)]
#![expect(clippy::cast_possible_truncation, clippy::iter_without_into_iter)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod sudo;