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 5f73035 chore: Bump env_logger from 0.11.6 to 0.11.7 (#155)
5f73035 is described below
commit 5f730356c3d5714730b44fa45c5b736898342370
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Mar 11 08:53:40 2025 +0200
chore: Bump env_logger from 0.11.6 to 0.11.7 (#155)
Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.11.6 to
0.11.7.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
-
[Commits](https://github.com/rust-cli/env_logger/compare/v0.11.6...v0.11.7)
---
updated-dependencies:
- dependency-name: env_logger
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 29 +++++++++++++++++++++++++++--
avro_test_helper/Cargo.toml | 2 +-
2 files changed, 28 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 76272a7..e19eac0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -426,6 +426,16 @@ name = "ctor"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07e9666f4a9a948d4f1dff0c08a4512b0f7c86414b23960104c243c10d79f4c3"
+dependencies = [
+ "ctor-proc-macro",
+ "dtor",
+]
+
+[[package]]
+name = "ctor-proc-macro"
+version = "0.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4f211af61d8efdd104f96e57adf5e426ba1bc3ed7a4ead616e15e5881fd79c4d"
[[package]]
name = "darling"
@@ -484,6 +494,21 @@ dependencies = [
"crypto-common",
]
+[[package]]
+name = "dtor"
+version = "0.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "222ef136a1c687d4aa0395c175f2c4586e379924c352fd02f7870cf7de783c23"
+dependencies = [
+ "dtor-proc-macro",
+]
+
+[[package]]
+name = "dtor-proc-macro"
+version = "0.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7454e41ff9012c00d53cf7f475c5e3afa3b91b7c90568495495e8d9bf47a1055"
+
[[package]]
name = "either"
version = "1.13.0"
@@ -507,9 +532,9 @@ dependencies = [
[[package]]
name = "env_logger"
-version = "0.11.6"
+version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
+checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
dependencies = [
"env_filter",
"log",
diff --git a/avro_test_helper/Cargo.toml b/avro_test_helper/Cargo.toml
index adfb736..90562ab 100644
--- a/avro_test_helper/Cargo.toml
+++ b/avro_test_helper/Cargo.toml
@@ -33,5 +33,5 @@ readme = "README.md"
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.4.1", features = ["dtor",
"proc_macro"] }
-env_logger = { default-features = false, version = "0.11.6" }
+env_logger = { default-features = false, version = "0.11.7" }
log = { workspace = true }