Skip to main content

known_types_github/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! This crate provides well-known types for GitHub APIs.
4//!
5//! ```edition2024
6//! use known_types_github::*;
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
22#[cfg(feature = "std")]
23extern crate std;
24
25#[cfg(feature = "alloc")]
26mod handle;
27#[cfg(feature = "alloc")]
28pub use handle::*;