1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! # `kamu-iso3166`
//!
//! Zero-allocation, `no_std`-compatible ISO 3166-1 and ISO 3166-2 primitives.
//!
//! ## Scope (v0.1)
//!
//! - ISO 3166-1: `Alpha2`, `Alpha3`, `Numeric` (see [`one`])
//! - ISO 3166-2: subdivisions keyed by parent country (see [`two`])
//!
//! ## Features
//!
//! - `std` (default) — enables `std::error::Error` integrations.
//! - `alloc` — reserved for future API surfaces that may accept owned strings.
//! - `serde` — derive `Serialize`/`Deserialize` for all public types.
//!
//! All lookups return `&'static` data; no runtime allocation is performed.
//!
//! ## Licensing
//!
//! Crate code is licensed under Apache-2.0. The embedded ISO 3166 data is
//! vendored from `ipregistry/iso3166` and is licensed under
//! Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
//! See `NOTICE` and `VENDORED.md` for full attribution.
pub use ;
pub use ;
pub use ;