env_preferences/
lib.rs

1// This file is part of ICU4X. For terms of use, please see the file
2// called LICENSE at the top level of the ICU4X source tree
3// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4
5//! # env_preferences
6//!
7//! `env_preferences` is a crate to retrieve system locale and preferences for
8//! Apple, Linux & Windows systems
9//!
10//! It currently fetches locales for the operating system
11//! currently in `String` format.
12//!
13//! In the current setup, it is not ensured that the locale retrieved will be
14//! converted to [`ICU4X Locale`](https://crates.io/crates/icu_locale)
15//!
16//! It also retrieves preferences for [`Calendar`](https://crates.io/crates/icu_calendar)
17//! & [`TimeZone`](https://crates.io/crates/icu_time)
18
19mod error;
20pub use error::RetrievalError;
21
22#[cfg(target_os = "linux")]
23mod linux;
24#[cfg(target_os = "linux")]
25pub use linux::*;
26#[cfg(target_os = "macos")]
27mod apple;
28#[cfg(target_os = "macos")]
29pub use apple::*;
30#[cfg(target_os = "windows")]
31mod windows;
32#[cfg(target_os = "windows")]
33pub use windows::*;
34#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
35compile_error!(
36    "Unsupported target OS. Supported operating systems are Apple, Linux & Windows as of now"
37);