-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
36 lines (30 loc) · 880 Bytes
/
Cargo.toml
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
[package]
name = "locale_config"
version = "0.3.1-alpha.0"
description = """
Maintains locale preferences for process and thread and initialises them by
inspecting the system for user preference.
"""
authors = [
"Jan Hudec <[email protected]>",
]
license = "MIT"
documentation = "https://docs.rs/locale_config/"
repository = "https://github.com/rust-locale/locale_config/"
readme = "README.md"
keywords = ["i18n"]
categories = ["os"]
exclude = ["/ci/*", "/.travis.yml", "/appveyor.yml"]
[package.metadata.release]
upload-doc = true
[badges]
travis-ci = { repository = "rust-locale/locale_config" }
appveyor = { repository = "rust-locale/locale_config" }
[dependencies]
lazy_static = "1"
regex = "1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winnls"] }
[target.'cfg(target_os = "macos")'.dependencies]
objc = "^0.2"
objc-foundation = "^0.1"