44 lines
1.0 KiB
TOML
44 lines
1.0 KiB
TOML
[package]
|
|
name = "fluent-langneg"
|
|
description = """
|
|
A library for language and locale negotiation.
|
|
"""
|
|
version = "0.13.1"
|
|
authors = ["Zibi Braniecki <gandalf@mozilla.com>"]
|
|
homepage = "http://projectfluent.org/"
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/projectfluent/fluent-langneg-rs"
|
|
readme = "README.md"
|
|
categories = ["internationalization", "localization"]
|
|
edition = "2018"
|
|
include = [
|
|
"src/**/*",
|
|
"benches/*.rs",
|
|
"Cargo.toml",
|
|
"README.md"
|
|
]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "projectfluent/fluent-langneg-rs" }
|
|
coveralls = { repository = "projectfluent/fluent-langneg-rs", branch = "master", service = "github" }
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[dependencies]
|
|
unic-langid = "0.9"
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
unic-langid = { version = "0.9", features = ["macros"] }
|
|
unic-locale = { version = "0.9", features = ["macros"] }
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "negotiate"
|
|
harness = false
|
|
|
|
[features]
|
|
default = []
|
|
cldr = ["unic-langid/likelysubtags"]
|