16 lines
490 B
TOML
16 lines
490 B
TOML
[package]
|
|
name = "get-locale"
|
|
version = "0.1.0"
|
|
authors = ["Michael Pfaff"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
core-foundation = "0.10.0"
|
|
core-foundation-sys = "0.8.7"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.60", features = ["Win32_System_SystemServices", "Win32_System_WindowsProgramming"] }
|
|
windows-sys = { version = "0.59", features = ["Win32_Globalization"] }
|