Skip to main content

patina_performance/
lib.rs

1#![doc = include_str!("../README.md")]
2#![doc = concat!(
3    "## License\n\n",
4    " Copyright (c) Microsoft Corporation.\n\n",
5    " SPDX-License-Identifier: Apache-2.0\n",
6)]
7#![cfg_attr(not(test), no_std)]
8#![deny(missing_docs)]
9#![cfg_attr(coverage, feature(coverage_attribute))]
10
11extern crate alloc;
12
13pub mod component;
14mod mm;