diff --git a/CHANGELOG.md b/CHANGELOG.md index fb429b3b..24d291e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - deps: update rust crate clap-verbosity-flag to 3.0.1(pr [#426]) +- deps: update rust crate tracing to 0.1.41(pr [#427]) ### Security @@ -936,6 +937,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#424]: https://github.com/jerus-org/pcu/pull/424 [#425]: https://github.com/jerus-org/pcu/pull/425 [#426]: https://github.com/jerus-org/pcu/pull/426 +[#427]: https://github.com/jerus-org/pcu/pull/427 [Unreleased]: https://github.com/jerus-org/pcu/compare/v0.4.17...HEAD [0.4.17]: https://github.com/jerus-org/pcu/compare/v0.4.16...v0.4.17 [0.4.16]: https://github.com/jerus-org/pcu/compare/v0.4.15...v0.4.16 diff --git a/Cargo.lock b/Cargo.lock index 616ff975..0b210130 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2711,9 +2711,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "pin-project-lite", "tracing-attributes", @@ -2722,9 +2722,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", @@ -2733,9 +2733,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", "valuable", diff --git a/Cargo.toml b/Cargo.toml index 29b1463f..583cd797 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ regex = "1.11.1" serde = { version = "1.0.215", features = ["derive"] } thiserror = "2.0.3" tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] } -tracing = "0.1.40" +tracing = "0.1.41" tracing-subscriber = { version = "0.3.18", features = ["std", "env-filter"] } url = "2.5.3"