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