Skip to main content

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#![deny(missing_debug_implementations)]
12#![deny(clippy::unwrap_used)]
13#![deny(clippy::alloc_instead_of_core)]
14
15//#[cfg(doctest)]
16//#[doc = include_str!("../README.md")]
17//pub struct ReadmeDoctests;
18
19#[cfg(feature = "alloc")]
20extern crate alloc;
21
22pub mod c;