// This is free and unencumbered software released into the public domain.
//! This crate provides well-known countries.
//!//! ```rust
//! use known_countries::Country;
//! ```
#![no_std]#![deny(unsafe_code)]#[cfg(feature ="alloc")]externcrate alloc;#[cfg(feature ="std")]externcrate std;modcountry;pubusecountry::*;#[doc=include_str!("../../README.md")]#[cfg(doctest)]pubstructReadmeDoctests;