chore(deps): bump ctor from 0.2.9 to 0.6.3 (#10852)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Douwe M Osinga <douwe@sidewalklabs.com>
This commit is contained in:
dependabot[bot]
2026-08-11 15:25:57 +02:00
committed by GitHub
parent d9d2aef093
commit a799c796f4
3 changed files with 5 additions and 15 deletions
Generated
+2 -12
View File
@@ -2841,16 +2841,6 @@ dependencies = [
"memchr",
]
[[package]]
name = "ctor"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
dependencies = [
"quote",
"syn 2.0.118",
]
[[package]]
name = "ctor"
version = "0.6.3"
@@ -4939,7 +4929,7 @@ dependencies = [
"candle-transformers",
"chrono",
"clap",
"ctor 0.2.9",
"ctor",
"dirs",
"dotenvy",
"dtor 1.0.5",
@@ -13924,7 +13914,7 @@ dependencies = [
"chrono",
"colored",
"const-str",
"ctor 0.6.3",
"ctor",
"dirs",
"futures",
"git-version",
+1 -1
View File
@@ -251,7 +251,7 @@ wiremock = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true, features = ["compat"] }
dotenvy = { workspace = true }
ctor = { version = "0.2", default-features = false }
ctor = { version = "0.6", default-features = false, features = ["proc_macro"] }
test-case = { workspace = true }
env-lock = { workspace = true }
rmcp = { workspace = true, features = ["transport-streamable-http-server"] }
+2 -2
View File
@@ -8,8 +8,8 @@ use std::time::{Duration, Instant};
const HELPER_ENV: &str = "GOOSE_SUBPROCESS_PARENT_DEATH_HELPER";
#[ctor::ctor(unsafe)]
fn maybe_run_helper() {
#[ctor::ctor]
unsafe fn maybe_run_helper() {
if std::env::var_os(HELPER_ENV).is_none() {
return;
}