Skip to content

Commit 17fa67b

Browse files
committed
Add versions to cargo
1 parent 74020c3 commit 17fa67b

File tree

2 files changed

+23
-25
lines changed

2 files changed

+23
-25
lines changed

Cargo.toml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"fluent-syntax",
5-
"fluent-bundle",
6-
"fluent-fallback",
7-
"fluent-resmgr",
8-
"fluent-pseudo",
9-
"fluent-testing",
10-
"fluent",
11-
"intl-memoizer"
4+
"fluent-syntax",
5+
"fluent-bundle",
6+
"fluent-fallback",
7+
"fluent-resmgr",
8+
"fluent-pseudo",
9+
"fluent-testing",
10+
"fluent",
11+
"intl-memoizer",
1212
]
1313

14-
exclude = [
15-
"fluent-cli",
16-
]
14+
exclude = ["fluent-cli"]
1715

1816
[workspace.dependencies]
1917
criterion = "0.3"
@@ -28,7 +26,7 @@ thiserror = "1.0"
2826
tokio = "1.0"
2927
unic-langid = "0.9"
3028

31-
fluent-bundle = { path = "fluent-bundle" }
32-
fluent-fallback = { path = "fluent-fallback" }
33-
fluent-pseudo = { path = "fluent-pseudo" }
34-
fluent-syntax = { path = "fluent-syntax" }
29+
fluent-bundle = { version = "0.15.3", path = "fluent-bundle" }
30+
fluent-fallback = { version = "0.7.1", path = "fluent-fallback" }
31+
fluent-pseudo = { version = "0.3.2", path = "fluent-pseudo" }
32+
fluent-syntax = { version = "0.11.1", path = "fluent-syntax" }

fluent-bundle/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ natural language translations.
77
version = "0.15.3"
88
edition = "2021"
99
authors = [
10-
"Zibi Braniecki <zibi@unicode.org>",
11-
"Staś Małolepszy <stas@mozilla.com>"
10+
"Zibi Braniecki <zibi@unicode.org>",
11+
"Staś Małolepszy <stas@mozilla.com>",
1212
]
1313
homepage = "http://www.projectfluent.org"
1414
license = "Apache-2.0 OR MIT"
@@ -17,12 +17,12 @@ readme = "README.md"
1717
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
1818
categories = ["localization", "internationalization"]
1919
include = [
20-
"src/**/*",
21-
"benches/*.rs",
22-
"Cargo.toml",
23-
"README.md",
24-
"LICENSE-APACHE",
25-
"LICENSE-MIT"
20+
"src/**/*",
21+
"benches/*.rs",
22+
"Cargo.toml",
23+
"README.md",
24+
"LICENSE-APACHE",
25+
"LICENSE-MIT",
2626
]
2727

2828
[dependencies]
@@ -31,14 +31,14 @@ fluent-syntax.workspace = true
3131
intl_pluralrules.workspace = true
3232
rustc-hash.workspace = true
3333
unic-langid.workspace = true
34-
intl-memoizer = { path = "../intl-memoizer" }
34+
intl-memoizer = { version = "0.5.2", path = "../intl-memoizer" }
3535
self_cell = "0.10"
3636
smallvec = "1"
3737

3838
[dev-dependencies]
3939
criterion.workspace = true
4040
iai.workspace = true
41-
serde = { workspace = true, features = ["derive"]}
41+
serde = { workspace = true, features = ["derive"] }
4242
unic-langid = { workspace = true, features = ["macros"] }
4343
rand = "0.8"
4444
serde_yaml = "0.8"

0 commit comments

Comments
 (0)