Skip to content

Commit

Permalink
Add versions to cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
zbraniecki committed May 5, 2024
1 parent 74020c3 commit 17fa67b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 25 deletions.
28 changes: 13 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }
20 changes: 10 additions & 10 deletions fluent-bundle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ natural language translations.
version = "0.15.3"
edition = "2021"
authors = [
"Zibi Braniecki <zibi@unicode.org>",
"Staś Małolepszy <stas@mozilla.com>"
"Zibi Braniecki <zibi@unicode.org>",
"Staś Małolepszy <stas@mozilla.com>",
]
homepage = "http://www.projectfluent.org"
license = "Apache-2.0 OR MIT"
Expand All @@ -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]
Expand All @@ -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"
Expand Down

0 comments on commit 17fa67b

Please sign in to comment.