From ff29c250dd63674eef101d4aab8d25e9a70acc4a Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Wed, 27 Sep 2023 11:24:23 +0300 Subject: [PATCH] AVRO-3875: [Rust]: Set "readme" metadata for each package separately (#2524) Signed-off-by: Martin Tzvetanov Grigorov --- lang/rust/Cargo.toml | 1 - lang/rust/avro/Cargo.toml | 2 +- lang/rust/avro_derive/Cargo.toml | 2 +- lang/rust/avro_test_helper/Cargo.toml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lang/rust/Cargo.toml b/lang/rust/Cargo.toml index 2fa7b1562ea..5674935b527 100644 --- a/lang/rust/Cargo.toml +++ b/lang/rust/Cargo.toml @@ -32,7 +32,6 @@ resolver = "2" version = "0.17.0" authors = ["Apache Avro team "] license = "Apache-2.0" -readme = "README.md" repository = "https://github.com/apache/avro" edition = "2021" rust-version = "1.65.0" diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml index 5a81d19830e..163bbfe003f 100644 --- a/lang/rust/avro/Cargo.toml +++ b/lang/rust/avro/Cargo.toml @@ -18,10 +18,10 @@ [package] name = "apache-avro" description = "A library for working with Apache Avro in Rust" +readme = "README.md" version.workspace = true authors.workspace = true license.workspace = true -readme.workspace = true repository.workspace = true edition.workspace = true rust-version.workspace = true diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml index 30cd748bccd..88c2f720740 100644 --- a/lang/rust/avro_derive/Cargo.toml +++ b/lang/rust/avro_derive/Cargo.toml @@ -21,13 +21,13 @@ version.workspace = true authors.workspace = true description = "A library for deriving Avro schemata from Rust structs and enums" license.workspace = true -readme.workspace = true repository.workspace = true edition.workspace = true rust-version.workspace = true keywords = ["avro", "data", "serialization", "derive"] categories.workspace = true documentation = "https://docs.rs/apache-avro-derive" +readme = "README.md" [lib] proc-macro = true diff --git a/lang/rust/avro_test_helper/Cargo.toml b/lang/rust/avro_test_helper/Cargo.toml index 3330dce24b1..ce26ddbda7f 100644 --- a/lang/rust/avro_test_helper/Cargo.toml +++ b/lang/rust/avro_test_helper/Cargo.toml @@ -23,11 +23,11 @@ rust-version.workspace = true description = "Apache Avro tests helper." authors.workspace = true license.workspace = true -readme.workspace = true repository.workspace = true keywords = ["avro", "data", "serialization", "test"] categories.workspace = true documentation = "https://docs.rs/apache-avro-test-helper" +readme = "README.md" [dependencies]