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