diff --git a/Cargo.toml b/Cargo.toml index 8c70b9b3..4bc232e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,19 +1,17 @@ [workspace] resolver = "2" members = [ - "fluent-syntax", - "fluent-bundle", - "fluent-fallback", - "fluent-resmgr", - "fluent-pseudo", - "fluent-testing", - "fluent", - "intl-memoizer" + "fluent-syntax", + "fluent-bundle", + "fluent-fallback", + "fluent-resmgr", + "fluent-pseudo", + "fluent-testing", + "fluent", + "intl-memoizer", ] -exclude = [ - "fluent-cli", -] +exclude = ["fluent-cli"] [workspace.dependencies] criterion = "0.3" @@ -28,7 +26,7 @@ thiserror = "1.0" tokio = "1.0" unic-langid = "0.9" -fluent-bundle = { path = "fluent-bundle" } -fluent-fallback = { path = "fluent-fallback" } -fluent-pseudo = { path = "fluent-pseudo" } -fluent-syntax = { path = "fluent-syntax" } +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" } diff --git a/fluent-bundle/Cargo.toml b/fluent-bundle/Cargo.toml index 570b7e44..cb149f08 100644 --- a/fluent-bundle/Cargo.toml +++ b/fluent-bundle/Cargo.toml @@ -7,8 +7,8 @@ natural language translations. version = "0.15.3" edition = "2021" authors = [ - "Zibi Braniecki ", - "Staś Małolepszy " + "Zibi Braniecki ", + "Staś Małolepszy ", ] homepage = "http://www.projectfluent.org" license = "Apache-2.0 OR MIT" @@ -17,12 +17,12 @@ readme = "README.md" keywords = ["localization", "l10n", "i18n", "intl", "internationalization"] categories = ["localization", "internationalization"] include = [ - "src/**/*", - "benches/*.rs", - "Cargo.toml", - "README.md", - "LICENSE-APACHE", - "LICENSE-MIT" + "src/**/*", + "benches/*.rs", + "Cargo.toml", + "README.md", + "LICENSE-APACHE", + "LICENSE-MIT", ] [dependencies] @@ -31,14 +31,14 @@ fluent-syntax.workspace = true intl_pluralrules.workspace = true rustc-hash.workspace = true unic-langid.workspace = true -intl-memoizer = { path = "../intl-memoizer" } +intl-memoizer = { version = "0.5.2", path = "../intl-memoizer" } self_cell = "0.10" smallvec = "1" [dev-dependencies] criterion.workspace = true iai.workspace = true -serde = { workspace = true, features = ["derive"]} +serde = { workspace = true, features = ["derive"] } unic-langid = { workspace = true, features = ["macros"] } rand = "0.8" serde_yaml = "0.8"