From dfd855f380704033d00c11bc4534861b4d4c6534 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Sat, 16 Aug 2025 12:25:04 -0300 Subject: [PATCH] fix: make unused fields public and remove pub(crate) visibility Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/args.rs | 4 ++-- src/config.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/args.rs b/src/args.rs index 71f92ec..5d5982b 100644 --- a/src/args.rs +++ b/src/args.rs @@ -174,8 +174,8 @@ impl FromStr for NumberOrString { */ #[derive(Debug, Clone)] pub struct KeyValue { - pub(crate) key: String, - pub(crate) value: String, + pub key: String, + pub value: String, } impl FromStr for KeyValue { diff --git a/src/config.rs b/src/config.rs index 7d79d10..f17eb1c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -37,7 +37,7 @@ pub struct Settings { pub list_format: Vec, pub human_readable: bool, pub output_format: Option, - pub(crate) verbose: u8, + pub verbose: u8, pub quiet: bool, pub force: bool, pub server: Option,