-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
47 lines (42 loc) · 1.33 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
[workspace]
members = [
"crates/value",
"crates/formatter",
"crates/function",
"crates/codegen",
"crates/macros",
"crates/lib",
]
resolver = "2"
exclude = ["examples"]
[workspace.package]
version = "0.5.0"
edition = "2021"
homepage = "https://github.com/zaytsev/fluent-static"
repository = "https://github.com/zaytsev/fluent-static"
license = "MIT"
authors = ["Sergey Zaytsev <sergey@zzlabs.xyz>"]
categories = ["localization", "internationalization"]
keywords = ["localization", "l10n", "i18n", "internationalization", "fluent"]
[workspace.dependencies]
fluent-syntax = "0.11"
fluent-bundle = "0.15"
quote = "1"
syn = { version = "1", features = ["full"] }
proc-macro2 = "1"
thiserror = "1"
paste = "1.0"
convert_case = "0.6"
unic-langid = { version = "0.9", features = ["unic-langid-macros"] }
once_cell = "1"
accept-language = "3.1"
intl_pluralrules = "7"
wax = { version = "0.6.0" }
pretty_assertions = "1.4"
trybuild = "1"
fluent-static = { path = "crates/lib", version = "0.5.0" }
fluent-static-codegen = { path = "crates/codegen", version = "0.6.0" }
fluent-static-macros = { path = "crates/macros", version = "0.1.0" }
fluent-static-value = { path = "crates/value", version = "0.1.0" }
fluent-static-function = { path = "crates/function", version = "0.1.0" }
fluent-static-formatter = { path = "crates/formatter", version = "0.1.0" }