Skip to main content

known_countries/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! This crate provides well-known countries.
4//!
5//! ```rust
6//! use known_countries::Country;
7//! ```
8
9#![no_std]
10#![deny(unsafe_code)]
11
12#[cfg(feature = "alloc")]
13extern crate alloc;
14
15#[cfg(feature = "std")]
16extern crate std;
17
18mod country;
19pub use country::*;
20
21#[doc = include_str!("../../README.md")]
22#[cfg(doctest)]
23pub struct ReadmeDoctests;