-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
44 lines (38 loc) · 992 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
37
38
39
40
41
42
43
44
[package]
name = "fluent-langneg"
description = """
A library for language and locale negotiation.
"""
version = "0.14.1"
authors = [
"Zibi Braniecki <[email protected]>"
]
homepage = "http://projectfluent.org/"
license = "Apache-2.0"
repository = "https://github.com/projectfluent/fluent-langneg-rs"
readme = "README.md"
categories = ["internationalization", "localization"]
edition = "2021"
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]
icu_locid = "1.4"
icu_locid_transform = { version = "1.4", optional = true }
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
criterion = "0.5"
[[bench]]
name = "negotiate"
harness = false
[features]
default = []
cldr = ["icu_locid_transform"]