known_types/lib.rs
1// This is free and unencumbered software released into the public domain.
2
3//! This crate provides well-known types.
4//!
5//! ```edition2024
6//! # use known_types::*;
7//! ```
8
9#![no_std]
10#![deny(unsafe_code)]
11
12pub mod c;
13
14mod features;
15pub use features::*;
16
17#[doc = include_str!("../../../README.md")]
18#[cfg(doctest)]
19pub struct ReadmeDoctests;