1[package]
2name = "locale_config"
3version = "0.3.0"
4description = """
5Maintains locale preferences for process and thread and initialises them by
6inspecting the system for user preference.
7"""
8authors = [
9 "Jan Hudec <bulb@ucw.cz>",
10]
11license = "MIT"
12
13documentation = "https://docs.rs/locale_config/"
14repository = "https://github.com/rust-locale/locale_config/"
15readme = "README.md"
16keywords = ["i18n"]
17categories = ["os"]
18exclude = ["/ci/*", "/.travis.yml", "/appveyor.yml"]
19
20[package.metadata.release]
21upload-doc = true
22
23[badges]
24travis-ci = { repository = "rust-locale/locale_config" }
25appveyor = { repository = "rust-locale/locale_config" }
26
27[dependencies]
28lazy_static = "1"
29regex = "1"
30
31[target.'cfg(windows)'.dependencies]
32winapi = { version = "0.3", features = ["winnls"] }
33
34[target.'cfg(target_os = "macos")'.dependencies]
35objc = "^0.2"
36objc-foundation = "^0.1"
37