resolve: apply stashed using/module + deps bridge; remove conflict markers in runner/mod.rs

This commit is contained in:
Selfhosting Dev
2025-09-08 04:35:50 +09:00
parent da5fa600d2
commit f22082f67c
18 changed files with 685 additions and 67 deletions

View File

@ -14,7 +14,7 @@ pub fn init_bid_plugins() {
if let Ok(()) = init_global_plugin_host("nyash.toml") {
if plugin_debug || cli_verbose {
println!("🔌 plugin host initialized from nyash.toml");
eprintln!("🔌 plugin host initialized from nyash.toml");
// Show which plugin loader backend compiled in (enabled/stub)
println!("[plugin-loader] backend={}", crate::runtime::plugin_loader_v2::backend_kind());
}
@ -29,7 +29,7 @@ pub fn init_bid_plugins() {
}
}
if plugin_debug || cli_verbose {
println!("✅ plugin host fully configured");
eprintln!("✅ plugin host fully configured");
}
}
} else if plugin_debug || cli_verbose {