-
Notifications
You must be signed in to change notification settings - Fork 97
/
Cargo.toml
49 lines (45 loc) · 1.18 KB
/
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
45
46
47
48
49
[workspace]
resolver = "2"
members = [
"fluent-syntax",
"fluent-bundle",
"fluent-fallback",
"fluent-resmgr",
"fluent-pseudo",
"fluent-testing",
"fluent",
"intl-memoizer",
]
exclude = [
"fluent-cli",
]
[workspace.package]
homepage = "https://www.projectfluent.org"
repository = "https://github.com/projectfluent/fluent-rs"
license = "Apache-2.0 OR MIT"
authors = [
"Caleb Maclennan <[email protected]>",
"Bruce Mitchener <[email protected]",
"Zibi Braniecki <[email protected]>",
"Staś Małolepszy <[email protected]>",
]
categories = ["localization", "internationalization"]
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
edition = "2021"
rust-version = "1.67.0"
[workspace.dependencies]
criterion = "0.5"
fluent-langneg = "0.13"
futures = "0.3"
iai = "0.1"
intl_pluralrules = "7.0.1"
rustc-hash = "2"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
tokio = "1.0"
unic-langid = "0.9"
fluent-bundle = { version = "0.15.3", path = "fluent-bundle" }
fluent-fallback = { version = "0.7.1", path = "fluent-fallback" }
fluent-pseudo = { version = "0.3.2", path = "fluent-pseudo" }
fluent-syntax = { version = "0.11.1", path = "fluent-syntax" }