From bdbefca983d4d38cfabd180768d3778a24cab6fb Mon Sep 17 00:00:00 2001 From: tison Date: Mon, 28 Oct 2024 18:05:25 +0800 Subject: [PATCH] build: add meta for cargo-release Signed-off-by: tison --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 3 +-- api/kafka-api/Cargo.toml | 1 - api/protos/Cargo.toml | 1 - api/wal-client/Cargo.toml | 1 - cmd/morax/Cargo.toml | 1 - crates/kafka-broker/Cargo.toml | 1 - crates/meta/Cargo.toml | 1 - crates/runtime/Cargo.toml | 1 - crates/server/Cargo.toml | 1 - crates/storage/Cargo.toml | 1 - crates/telemetry/Cargo.toml | 1 - crates/version/Cargo.toml | 1 - crates/wal-broker/Cargo.toml | 1 - tests/rdkafka/Cargo.toml | 4 +++- tests/rskafka/Cargo.toml | 4 +++- tests/toolkit/Cargo.toml | 4 +++- tests/wal/Cargo.toml | 4 +++- xtask/Cargo.toml | 4 +++- 19 files changed, 24 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2faaaf..cc93b44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1655,9 +1655,9 @@ dependencies = [ [[package]] name = "insta" -version = "1.40.0" +version = "1.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6593a41c7a73841868772495db7dc1e8ecab43bb5c0b6da2059246c4b506ab60" +checksum = "a1f72d3e19488cf7d8ea52d2fc0f8754fc933398b337cd3cbdb28aaeb35159ef" dependencies = [ "console", "lazy_static", @@ -1776,9 +1776,9 @@ dependencies = [ [[package]] name = "libm" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bda4c6077b0b08da2c48b172195795498381a7c8988c9e6212a6c55c5b9bd70" +checksum = "a00419de735aac21d53b0de5ce2c03bd3627277cf471300f27ebc89f7d828047" [[package]] name = "libredox" @@ -1903,9 +1903,9 @@ dependencies = [ [[package]] name = "mea" -version = "0.0.3" +version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d788f3a4c1c80f398a13b41f97a7cc2b850c31f0617925141adf1cebc9d7542" +checksum = "b3f828cae3376d2bfaa33b56d14051537384da1dabbe41e80a7798c47e91f986" dependencies = [ "crossbeam-queue", ] @@ -3341,9 +3341,9 @@ dependencies = [ [[package]] name = "shadow-rs" -version = "0.35.1" +version = "0.35.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2311e39772c00391875f40e34d43efef247b23930143a70ca5fbec9505937420" +checksum = "f1b2328fb3ec0d5302f95915e7e77cfc2ff943714d9970bc4b66e9eacf318687" dependencies = [ "const_format", "git2", diff --git a/Cargo.toml b/Cargo.toml index 8dfac6d..bc1bac6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,6 @@ members = [ resolver = "2" [workspace.package] -authors = ["tison "] edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -61,7 +60,7 @@ insta = { version = "1.40", features = ["json"] } local-ip-address = { version = "0.6" } log = { version = "0.4", features = ["kv_unstable_serde", "serde"] } logforth = { version = "0.14" } -mea = { version = "0.0.3" } +mea = { version = "0.0.4" } mime = { version = "0.3" } opendal = { version = "0.50" } pin-project = { version = "1.1" } diff --git a/api/kafka-api/Cargo.toml b/api/kafka-api/Cargo.toml index 19853db..74352c1 100644 --- a/api/kafka-api/Cargo.toml +++ b/api/kafka-api/Cargo.toml @@ -23,7 +23,6 @@ publish = true readme = "README.md" repository = "https://github.com/tisonkun/morax/" -authors.workspace = true edition.workspace = true license.workspace = true diff --git a/api/protos/Cargo.toml b/api/protos/Cargo.toml index f10ce25..f08e6aa 100644 --- a/api/protos/Cargo.toml +++ b/api/protos/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "Shared plain old data structures for Morax" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/api/wal-client/Cargo.toml b/api/wal-client/Cargo.toml index 37ea931..1aaad38 100644 --- a/api/wal-client/Cargo.toml +++ b/api/wal-client/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "A client for Morax WAL Service broker" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/cmd/morax/Cargo.toml b/cmd/morax/Cargo.toml index a1f0286..241b038 100644 --- a/cmd/morax/Cargo.toml +++ b/cmd/morax/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "A message queue and data streaming platform based on cloud native services." -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/kafka-broker/Cargo.toml b/crates/kafka-broker/Cargo.toml index 3b29fb7..081a5e7 100644 --- a/crates/kafka-broker/Cargo.toml +++ b/crates/kafka-broker/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "The Apache Kafka broker layer for Morax" -authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/meta/Cargo.toml b/crates/meta/Cargo.toml index f00ba08..42410f2 100644 --- a/crates/meta/Cargo.toml +++ b/crates/meta/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "The Meta Service for Morax that manages the metadata with ACID properties" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 92d3594..da7801f 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "Global runtimes and async utilities used by Morax" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 4833f5e..1f6e828 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "The Morax Server that bundles all the broker services into one facade" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 67746f0..3a567f6 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "The Storage Service for Morax that interacts with the different object storage backends" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/telemetry/Cargo.toml b/crates/telemetry/Cargo.toml index 4e3859d..cf00865 100644 --- a/crates/telemetry/Cargo.toml +++ b/crates/telemetry/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "A telemetry component that collects metrics, logs, and traces for Morax itself" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/version/Cargo.toml b/crates/version/Cargo.toml index 19d630a..4cce261 100644 --- a/crates/version/Cargo.toml +++ b/crates/version/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "A common build helper for Morax that generates the version information" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/crates/wal-broker/Cargo.toml b/crates/wal-broker/Cargo.toml index 956219f..4fc29a8 100644 --- a/crates/wal-broker/Cargo.toml +++ b/crates/wal-broker/Cargo.toml @@ -18,7 +18,6 @@ publish = true description = "The WAL Service broker layer for Morax" -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true diff --git a/tests/rdkafka/Cargo.toml b/tests/rdkafka/Cargo.toml index e7b8bf9..2b4d588 100644 --- a/tests/rdkafka/Cargo.toml +++ b/tests/rdkafka/Cargo.toml @@ -16,13 +16,15 @@ name = "rdkafka-tests" publish = false -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +[package.metadata.release] +release = false + [dependencies] log = { workspace = true } morax-protos = { workspace = true } diff --git a/tests/rskafka/Cargo.toml b/tests/rskafka/Cargo.toml index e2495c3..362aab5 100644 --- a/tests/rskafka/Cargo.toml +++ b/tests/rskafka/Cargo.toml @@ -16,13 +16,15 @@ name = "rskafka-tests" publish = false -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +[package.metadata.release] +release = false + [dependencies] log = { workspace = true } morax-protos = { workspace = true } diff --git a/tests/toolkit/Cargo.toml b/tests/toolkit/Cargo.toml index 515c645..cf3001c 100644 --- a/tests/toolkit/Cargo.toml +++ b/tests/toolkit/Cargo.toml @@ -16,13 +16,15 @@ name = "tests-toolkit" publish = false -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +[package.metadata.release] +release = false + [dependencies] local-ip-address = { workspace = true } morax-protos = { workspace = true } diff --git a/tests/wal/Cargo.toml b/tests/wal/Cargo.toml index 94e2b4f..c268d5d 100644 --- a/tests/wal/Cargo.toml +++ b/tests/wal/Cargo.toml @@ -16,13 +16,15 @@ name = "wal-tests" publish = false -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +[package.metadata.release] +release = false + [dependencies] base64 = { workspace = true } insta = { workspace = true } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 266b84f..6f2ac4c 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -16,13 +16,15 @@ name = "x" publish = false -authors.workspace = true edition.workspace = true license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +[package.metadata.release] +release = false + [dependencies] clap = { workspace = true } which = { workspace = true }