diff --git a/Cargo.toml b/Cargo.toml index ea649977..674758d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,13 @@ [workspace] resolver = "2" members = ["harfbuzz", "harfbuzz-sys", "harfbuzz-traits"] + +[workspace.package] +version = "0.6.1" +edition = "2021" +authors = ["The Servo Project Developers"] +license = "MIT OR Apache-2.0" +documentation = "https://docs.rs/harfbuzz/" +keywords = ["opentype", "font", "text", "unicode", "shaping"] +categories = ["text-processing"] +repository = "https://github.com/servo/rust-harfbuzz" diff --git a/harfbuzz-sys/Cargo.toml b/harfbuzz-sys/Cargo.toml index 3ffe3ca7..8312580a 100644 --- a/harfbuzz-sys/Cargo.toml +++ b/harfbuzz-sys/Cargo.toml @@ -1,17 +1,14 @@ [package] name = "harfbuzz-sys" -version = "0.6.0" -edition = "2021" - -authors = ["The Servo Project Developers"] -license = "MIT OR Apache-2.0" readme = "README.md" - -description = "Rust bindings to the HarfBuzz text shaping engine" -repository = "https://github.com/servo/rust-harfbuzz" -documentation = "https://docs.rs/harfbuzz-sys/" -keywords = ["opentype", "font", "text", "unicode", "shaping"] categories = ["external-ffi-bindings", "internationalization", "text-processing"] +authors = { workspace = true } +documentation = { workspace = true } +edition = { workspace = true } +keywords = { workspace = true } +license = { workspace = true } +repository = { workspace = true } +version = { workspace = true } exclude = [ "harfbuzz/docs/*", diff --git a/harfbuzz-traits/Cargo.toml b/harfbuzz-traits/Cargo.toml index 8c86bb03..9cf3a5c6 100644 --- a/harfbuzz-traits/Cargo.toml +++ b/harfbuzz-traits/Cargo.toml @@ -1,16 +1,10 @@ [package] name = "harfbuzz-traits" -version = "0.6.0" -edition = "2021" - -authors = ["The Servo Project Developers"] -license = "MIT OR Apache-2.0" -readme = "README.md" - -description = "Rust Traits for the HarfBuzz text shaping engine" -repository = "https://github.com/servo/rust-harfbuzz" -documentation = "https://docs.rs/harfbuzz/" -keywords = ["opentype", "font", "text", "unicode", "shaping"] -categories = ["text-processing"] - -[features] +authors = { workspace = true } +categories = { workspace = true } +documentation = { workspace = true } +edition = { workspace = true } +keywords = { workspace = true } +license = { workspace = true } +repository = { workspace = true } +version = { workspace = true } diff --git a/harfbuzz/Cargo.toml b/harfbuzz/Cargo.toml index 553653a4..121da0fe 100644 --- a/harfbuzz/Cargo.toml +++ b/harfbuzz/Cargo.toml @@ -1,26 +1,23 @@ [package] name = "harfbuzz" -version = "0.6.0" -edition = "2021" - -authors = ["The Servo Project Developers"] -license = "MIT OR Apache-2.0" readme = "README.md" - -description = "Rust bindings to the HarfBuzz text shaping engine" -repository = "https://github.com/servo/rust-harfbuzz" -documentation = "https://docs.rs/harfbuzz/" -keywords = ["opentype", "font", "text", "unicode", "shaping"] -categories = ["text-processing"] +authors = { workspace = true } +categories = { workspace = true } +documentation = { workspace = true } +edition = { workspace = true } +keywords = { workspace = true } +license = { workspace = true } +repository = { workspace = true } +version = { workspace = true } [dependencies.harfbuzz-sys] path = "../harfbuzz-sys" -version = "0.6.0" +version = "0.6.1" default-features = false [dependencies.harfbuzz-traits] path = "../harfbuzz-traits" -version = "0.6.0" +version = "0.6.1" default-features = false [features]