From 8a5dc33b5ab7d38e8b357cacefc66fb0448a9f93 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sat, 1 Nov 2025 20:07:32 -0400 Subject: [PATCH] fix(options): add missing --autoconfigure flag --- src/options.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/options.rs b/src/options.rs index cf02bba..0953ba7 100644 --- a/src/options.rs +++ b/src/options.rs @@ -44,6 +44,13 @@ impl OptionsRepresentable for SproutOptions { /// All the Sprout options that are defined. fn options() -> &'static [(&'static str, OptionDescription<'static>)] { &[ + ( + "autoconfigure", + OptionDescription { + description: "Enable Sprout Autoconfiguration", + form: OptionForm::Flag, + }, + ), ( "config", OptionDescription {