fix: make unused fields public and remove pub(crate) visibility

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-16 12:25:04 -03:00
parent 5e111e002a
commit dfd855f380
2 changed files with 3 additions and 3 deletions

View File

@@ -174,8 +174,8 @@ impl FromStr for NumberOrString {
*/ */
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct KeyValue { pub struct KeyValue {
pub(crate) key: String, pub key: String,
pub(crate) value: String, pub value: String,
} }
impl FromStr for KeyValue { impl FromStr for KeyValue {

View File

@@ -37,7 +37,7 @@ pub struct Settings {
pub list_format: Vec<ColumnConfig>, pub list_format: Vec<ColumnConfig>,
pub human_readable: bool, pub human_readable: bool,
pub output_format: Option<String>, pub output_format: Option<String>,
pub(crate) verbose: u8, pub verbose: u8,
pub quiet: bool, pub quiet: bool,
pub force: bool, pub force: bool,
pub server: Option<ServerConfig>, pub server: Option<ServerConfig>,