sys_language 0.1.0

A cross-platform Rust library for detecting system language with preferred language selection and fallback support
Documentation
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[lib]
name = "sys_language"
path = "src/lib.rs"

[package]
authors = ["Cupnfish", "智普AI"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["internationalization", "localization", "os"]
description = "A cross-platform Rust library for detecting system language with preferred language selection and fallback support"
edition = "2024"
keywords = ["language", "locale", "i18n", "system", "cross-platform"]
license = "MIT"
name = "sys_language"
readme = "README.md"
repository = "https://github.com/cupnfish/sys_language"
version = "0.1.0"

[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
features = ["Win32_Globalization"]
version = "0.59"