Lints and build commands

This commit is contained in:
2025-09-20 20:31:15 -06:00
parent 0d7edf525e
commit 80cc551c76
3 changed files with 26 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
//! Module
#![cfg_attr(docsrs, feature(doc_cfg))]
// #[cfg_attr(docsrs, doc(cfg(feature = "std")))]
/// Add function
pub fn add(left: usize, right: usize) -> usize {
left.wrapping_add(right)
}