From 8b01f099d588c847cfabb401be49396f5c34d772 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 20:03:08 +0000 Subject: [PATCH] build(deps): bump ctor from 0.10.0 to 0.10.1 Bumps [ctor](https://github.com/mmastrac/rust-ctor) from 0.10.0 to 0.10.1. - [Changelog](https://github.com/mmastrac/linktime/blob/master/CHANGELOG.md) - [Commits](https://github.com/mmastrac/rust-ctor/commits) --- updated-dependencies: - dependency-name: ctor dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++---------- bins/dfagen/Cargo.toml | 2 +- bins/lalrgen/Cargo.toml | 2 +- libs/htmlparser/Cargo.toml | 2 +- libs/jsparser/Cargo.toml | 2 +- libs/jsruntime/Cargo.toml | 2 +- libs/logging/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d18e03e4a..ed2d24502 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -647,9 +647,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] name = "ctor" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95d0d11eb38e7642efca359c3cf6eb7b2e528182d09110165de70192b0352775" +checksum = "83cf0d42651b16c6dfe68685716d18480d18a9c39c62d76e8cf3eb6ed5d8bcbf" dependencies = [ "ctor-proc-macro", "dtor", @@ -658,9 +658,9 @@ dependencies = [ [[package]] name = "ctor-proc-macro" -version = "0.0.12" +version = "0.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7ab264ea985f1bd27887d7b21ea2bb046728e05d11909ca138d700c494730db" +checksum = "7a949c44fcacbbbb7ada007dc7acb34603dd97cd47de5d054f2b6493ecebb483" [[package]] name = "dashmap" @@ -701,18 +701,18 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" [[package]] name = "dtor" -version = "0.7.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f72721db8027a4e96dd6fb50d2a1d32259c9d3da1b63dee612ccd981e14293" +checksum = "edf234dd1594d6dd434a8fb8cada51ddbbc593e40e4a01556a0b31c62da2775b" dependencies = [ "dtor-proc-macro", ] [[package]] name = "dtor-proc-macro" -version = "0.0.12" +version = "0.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c98b077c7463d01d22dde8a24378ddf1ca7263dc687cffbed38819ea6c21131" +checksum = "2647271c92754afcb174e758003cfd1cbf1e43e5a7853d7b1813e63e19e39a73" [[package]] name = "either" @@ -1349,9 +1349,9 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "link-section" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "468808413fa8bdf0edbe61c2bbc182dfc59885b94f496cf3fb42c9c96b1e0149" +checksum = "b685d66585d646efe09fec763d796c291049c8b6bf84e04954bffc8748341f0d" [[package]] name = "linux-raw-sys" diff --git a/bins/dfagen/Cargo.toml b/bins/dfagen/Cargo.toml index 166a07c53..128629247 100644 --- a/bins/dfagen/Cargo.toml +++ b/bins/dfagen/Cargo.toml @@ -22,7 +22,7 @@ serde_yaml = "0.9.34" smallvec = "1.15.1" [dev-dependencies] -ctor = "0.10.0" +ctor = "0.10.1" [lints] workspace = true diff --git a/bins/lalrgen/Cargo.toml b/bins/lalrgen/Cargo.toml index f9b10f650..1bbcfe9d3 100644 --- a/bins/lalrgen/Cargo.toml +++ b/bins/lalrgen/Cargo.toml @@ -27,7 +27,7 @@ serde_yaml = "0.9.34" [dev-dependencies] assert_matches = "1.5.0" -ctor = "0.10.0" +ctor = "0.10.1" pretty_assertions = "1.4.1" [lints] diff --git a/libs/htmlparser/Cargo.toml b/libs/htmlparser/Cargo.toml index d51b82591..e7e164dac 100644 --- a/libs/htmlparser/Cargo.toml +++ b/libs/htmlparser/Cargo.toml @@ -20,7 +20,7 @@ unicase = "2.9.0" [dev-dependencies] anyhow = "1.0.102" criterion = "0.8.2" -ctor = "0.10.0" +ctor = "0.10.1" itertools = "0.14.0" toydom = { path = "../toydom" } diff --git a/libs/jsparser/Cargo.toml b/libs/jsparser/Cargo.toml index 8db0490e3..f475d0b12 100644 --- a/libs/jsparser/Cargo.toml +++ b/libs/jsparser/Cargo.toml @@ -25,7 +25,7 @@ unicode-id-start = "1.4.0" anyhow = "1.0.102" assert_matches = "1.5.0" clap = { version = "4.6.1", features = ["env", "derive", "wrap_help"] } -ctor = "0.10.0" +ctor = "0.10.1" [lints] workspace = true diff --git a/libs/jsruntime/Cargo.toml b/libs/jsruntime/Cargo.toml index 743825f6b..e792b23bf 100644 --- a/libs/jsruntime/Cargo.toml +++ b/libs/jsruntime/Cargo.toml @@ -29,7 +29,7 @@ thiserror = "2.0.18" [dev-dependencies] assert_matches = "1.5.0" criterion = "0.8.2" -ctor = "0.10.0" +ctor = "0.10.1" [lints] workspace = true diff --git a/libs/logging/Cargo.toml b/libs/logging/Cargo.toml index 4d9d5f69e..5cd8f90a6 100644 --- a/libs/logging/Cargo.toml +++ b/libs/logging/Cargo.toml @@ -11,7 +11,7 @@ version.workspace = true [dependencies] chrono = { version = "0.4.44", default-features = false, features = ["clock"] } -ctor = "0.10.0" +ctor = "0.10.1" is-terminal = "0.4.17" tracing = "0.1.44" tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }