This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 9adc865 chore: Bump ctor from 0.3.6 to 0.4.1 (#152)
9adc865 is described below
commit 9adc8658fdbac6a5727ce5828c0862bd595f601e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Mar 10 15:31:49 2025 +0200
chore: Bump ctor from 0.3.6 to 0.4.1 (#152)
* chore: Bump ctor from 0.3.6 to 0.4.1
Bumps [ctor](https://github.com/mmastrac/rust-ctor) from 0.3.6 to 0.4.1.
- [Commits](https://github.com/mmastrac/rust-ctor/commits)
---
updated-dependencies:
- dependency-name: ctor
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
* Explicitly state that we use the `dtor` and `proc_macro` features
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Martin Grigorov <[email protected]>
---
Cargo.lock | 13 ++-----------
avro_test_helper/Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 12 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 04bed6f..76272a7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -423,18 +423,9 @@ dependencies = [
[[package]]
name = "ctor"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "21d960ecacd0a1bf55e73144b72de745e7bf275c7952c50e36e8af0a0cb7ab1f"
-dependencies = [
- "ctor-proc-macro",
-]
-
-[[package]]
-name = "ctor-proc-macro"
-version = "0.0.4"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c426d2ba3e525b39c1f0a9ba41b9fe61878dee11fa4e4a76b6ab440f46c5db5d"
+checksum = "07e9666f4a9a948d4f1dff0c08a4512b0f7c86414b23960104c243c10d79f4c3"
[[package]]
name = "darling"
diff --git a/avro_test_helper/Cargo.toml b/avro_test_helper/Cargo.toml
index 443b154..adfb736 100644
--- a/avro_test_helper/Cargo.toml
+++ b/avro_test_helper/Cargo.toml
@@ -32,6 +32,6 @@ readme = "README.md"
[dependencies]
anyhow = { default-features = false, version = "1.0.97", features = ["std"] }
better-panic = { default-features = false, version = "0.3.0" }
-ctor = { default-features = false, version = "0.3.6" }
+ctor = { default-features = false, version = "0.4.1", features = ["dtor",
"proc_macro"] }
env_logger = { default-features = false, version = "0.11.6" }
log = { workspace = true }