Skip to main content

rstared/
lib.rs

1// SPDX-FileCopyrightText: 2025 rstared contributors
2//
3// SPDX-License-Identifier: MIT OR Apache-2.0
4
5#![doc(html_root_url = "https://docs.rs/rstared")]
6#![doc = include_str!("../README.md")]
7//#![deny(missing_docs)]
8#![forbid(unsafe_code)]
9#![no_std]
10
11#[cfg(feature = "std")]
12extern crate std;
13
14// No feature for `alloc` because it would be always enabled anyway.
15extern crate alloc;
16
17mod as_ref;
18mod rtreed;
19
20pub use crate::as_ref::AsRefRTree;
21pub use crate::rtreed::RTreed;
22pub use maplike::{Container, Get, Insert, Push, Remove};