geodb-core 0.1.6

A high-performance geographic database with countries, states, cities, and more
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    // This build script enforces that backend features are mutually exclusive.
    // let features: &[&'static str] = &[
    //     #[cfg(feature = "use_smolstr")]
    //     "use_smolstr",
    //     // Add other potential backend features here in the future
    //     // e.g., #[cfg(feature = "backend-other")] "backend-other",
    // ];
    //
    // if features.len() > 1 {
    //     panic!("Error: The following backend features are mutually exclusive and cannot be enabled at the same time: {features:?}");
    // }
}