Skip to content

Commit 38a5c67

Browse files
committed
chore(tooling): Move Cargo metadata to workspace where possible
1 parent 86fa8b5 commit 38a5c67

File tree

10 files changed

+63
-81
lines changed

10 files changed

+63
-81
lines changed

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ members = [
1414
exclude = ["fluent-cli"]
1515

1616
[workspace.package]
17+
homepage = "https://www.projectfluent.org"
18+
repository = "https://github.com/projectfluent/fluent-rs"
19+
license = "Apache-2.0 OR MIT"
20+
authors = [
21+
"Zibi Braniecki <zibi@unicode.org>",
22+
"Staś Małolepszy <stas@mozilla.com>"
23+
]
24+
categories = ["localization", "internationalization"]
25+
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
1726
edition = "2021"
1827
rust-version = "1.67.0"
1928

fluent-bundle/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ natural language translations.
77
version = "0.15.3"
88
edition.workspace = true
99
rust-version.workspace = true
10-
authors = [
11-
"Zibi Braniecki <zibi@unicode.org>",
12-
"Staś Małolepszy <stas@mozilla.com>",
13-
]
14-
homepage = "http://www.projectfluent.org"
15-
license = "Apache-2.0 OR MIT"
16-
repository = "https://github.com/projectfluent/fluent-rs"
10+
homepage.workspace = true
11+
repository.workspace = true
12+
license.workspace = true
13+
authors.workspace = true
14+
categories.workspace = true
15+
keywords.workspace = true
1716
readme = "README.md"
18-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
19-
categories = ["localization", "internationalization"]
2017
include = [
2118
"src/**/*",
2219
"benches/*.rs",

fluent-cli/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ for Fluent Localization System.
77
version = "0.0.1"
88
edition.workspace = true
99
rust-version.workspace = true
10-
authors = [
11-
"Zibi Braniecki <zibi@unicode.org>",
12-
"Staś Małolepszy <stas@mozilla.com>"
13-
]
14-
homepage = "http://www.projectfluent.org"
15-
license = "Apache-2.0 OR MIT"
16-
repository = "https://github.com/projectfluent/fluent-rs"
10+
homepage.workspace = true
11+
repository.workspace = true
12+
license.workspace = true
13+
authors.workspace = true
14+
categories.workspace = true
15+
keywords.workspace = true
1716
readme = "README.md"
18-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
19-
categories = ["localization", "internationalization"]
2017

2118
[[bin]]
2219
name = "resolver-cli"

fluent-fallback/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ and runtime localization lifecycle.
77
version = "0.7.1"
88
edition.workspace = true
99
rust-version.workspace = true
10-
authors = [
11-
"Zibi Braniecki <zibi@unicode.org>",
12-
"Staś Małolepszy <stas@mozilla.com>"
13-
]
14-
homepage = "http://www.projectfluent.org"
15-
license = "Apache-2.0 OR MIT"
16-
repository = "https://github.com/projectfluent/fluent-rs"
10+
homepage.workspace = true
11+
repository.workspace = true
12+
license.workspace = true
13+
authors.workspace = true
14+
categories.workspace = true
15+
keywords.workspace = true
1716
readme = "README.md"
18-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
19-
categories = ["localization", "internationalization"]
2017

2118
[dependencies]
2219
fluent-bundle.workspace = true

fluent-pseudo/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@ Pseudolocalization transformation API for use with Project Fluent API.
66
version = "0.3.2"
77
edition.workspace = true
88
rust-version = "1.64.0"
9-
authors = [
10-
"Zibi Braniecki <zibi@unicode.org>",
11-
"Staś Małolepszy <stas@mozilla.com>"
12-
]
13-
homepage = "http://www.projectfluent.org"
14-
license = "Apache-2.0 OR MIT"
15-
repository = "https://github.com/projectfluent/fluent-rs"
9+
homepage.workspace = true
10+
repository.workspace = true
11+
license.workspace = true
12+
authors.workspace = true
13+
categories.workspace = true
14+
keywords.workspace = true
1615
readme = "README.md"
17-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
18-
categories = ["localization", "internationalization"]
1916
include = [
2017
"src/**/*",
2118
"benches/*.rs",

fluent-resmgr/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@ Resource manager for Fluent localization resources.
66
version = "0.0.7"
77
edition.workspace = true
88
rust-version.workspace = true
9-
authors = [
10-
"Zibi Braniecki <zibi@unicode.org>",
11-
"Staś Małolepszy <stas@mozilla.com>"
12-
]
13-
homepage = "http://www.projectfluent.org"
14-
license = "Apache-2.0 OR MIT"
15-
repository = "https://github.com/projectfluent/fluent-rs"
9+
homepage.workspace = true
10+
repository.workspace = true
11+
license.workspace = true
12+
authors.workspace = true
13+
categories.workspace = true
14+
keywords.workspace = true
1615
readme = "README.md"
17-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
18-
categories = ["localization", "internationalization"]
1916

2017
[dependencies]
2118
fluent-bundle.workspace = true

fluent-syntax/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@ Parser/Serializer tools for Fluent Syntax.
66
version = "0.11.1"
77
edition.workspace = true
88
rust-version = "1.64.0"
9-
authors = [
10-
"Zibi Braniecki <zibi@unicode.org>",
11-
"Staś Małolepszy <stas@mozilla.com>"
12-
]
13-
homepage = "http://www.projectfluent.org"
14-
license = "Apache-2.0 OR MIT"
15-
repository = "https://github.com/projectfluent/fluent-rs"
9+
homepage.workspace = true
10+
repository.workspace = true
11+
license.workspace = true
12+
authors.workspace = true
13+
categories.workspace = true
14+
keywords.workspace = true
1615
readme = "README.md"
17-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
18-
categories = ["localization", "internationalization"]
1916
include = [
2017
"src/**/*",
2118
"benches/*.rs",

fluent-testing/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@ A collection of mock scenarios for testing fluent-rs components.
66
version = "0.0.4"
77
edition.workspace = true
88
rust-version.workspace = true
9-
authors = [
10-
"Zibi Braniecki <zibi@braniecki.net>",
11-
"Erik Nordin <enordin@mozilla.com>"
12-
]
13-
homepage = "https://www.projectfluent.org"
14-
license = "Apache-2.0 OR MIT"
15-
repository = "https://github.com/projectfluent/fluent-rs"
9+
homepage.workspace = true
10+
repository.workspace = true
11+
license.workspace = true
12+
authors.workspace = true
13+
categories.workspace = true
14+
keywords.workspace = true
1615
readme = "README.md"
17-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
18-
categories = ["localization", "internationalization"]
1916
include = [
2017
"src/**/*",
2118
"resources/**/*",

fluent/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ natural language translations.
77
version = "0.16.1"
88
edition.workspace = true
99
rust-version.workspace = true
10-
authors = [
11-
"Zibi Braniecki <zibi@unicode.org>",
12-
"Staś Małolepszy <stas@mozilla.com>"
13-
]
14-
homepage = "http://www.projectfluent.org"
15-
license = "Apache-2.0 OR MIT"
16-
repository = "https://github.com/projectfluent/fluent-rs"
10+
homepage.workspace = true
11+
repository.workspace = true
12+
license.workspace = true
13+
authors.workspace = true
14+
categories.workspace = true
15+
keywords.workspace = true
1716
readme = "README.md"
18-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
19-
categories = ["localization", "internationalization"]
2017
include = [
2118
"src/**/*",
2219
"benches/*.rs",

intl-memoizer/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ intl formatters.
77
version = "0.5.2"
88
edition.workspace = true
99
rust-version.workspace = true
10-
authors = [
11-
"Zibi Braniecki <zibi@unicode.org>",
12-
"Manish Goregaokar <manishsmail@gmail.com>"
13-
]
14-
homepage = "http://www.projectfluent.org"
15-
license = "Apache-2.0 OR MIT"
16-
repository = "https://github.com/projectfluent/fluent-rs"
10+
homepage.workspace = true
11+
repository.workspace = true
12+
license.workspace = true
13+
authors.workspace = true
14+
categories.workspace = true
15+
keywords.workspace = true
1716
readme = "README.md"
18-
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
19-
categories = ["localization", "internationalization"]
2017
include = [
2118
"src/**/*",
2219
"benches/*.rs",

0 commit comments

Comments
 (0)