fix: add missing meta_name implementation and fix compilation errors

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-26 18:05:02 -03:00
parent 1f82be1f02
commit 3fb436dc44
8 changed files with 18 additions and 24 deletions

View File

@@ -1,7 +1,5 @@
use anyhow::Result;
use log::debug;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
pub mod program;
pub mod digest;
@@ -82,6 +80,10 @@ impl BaseMetaPlugin {
}
impl MetaPlugin for BaseMetaPlugin {
fn meta_name(&self) -> String {
self.meta_name.clone()
}
fn outputs(&self) -> &std::collections::HashMap<String, serde_yaml::Value> {
&self.outputs
}
@@ -194,7 +196,8 @@ pub trait MetaPlugin {
// Access to outputs mapping with default implementation
fn outputs(&self) -> &std::collections::HashMap<String, serde_yaml::Value> {
&std::collections::HashMap::new()
static EMPTY: std::collections::HashMap<String, serde_yaml::Value> = std::collections::HashMap::new();
&EMPTY
}
fn outputs_mut(&mut self) -> &mut std::collections::HashMap<String, serde_yaml::Value> {
@@ -203,7 +206,8 @@ pub trait MetaPlugin {
// Access to options mapping with default implementation
fn options(&self) -> &std::collections::HashMap<String, serde_yaml::Value> {
&std::collections::HashMap::new()
static EMPTY: std::collections::HashMap<String, serde_yaml::Value> = std::collections::HashMap::new();
&EMPTY
}
fn options_mut(&mut self) -> &mut std::collections::HashMap<String, serde_yaml::Value> {