summaryrefslogtreecommitdiff
path: root/oryxc/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-02 22:12:18 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-02 22:12:18 +0100
commit854e2c357e49b05ade4a74cbdcfd546cb53adf96 (patch)
tree9805744720271afc3e3a154a0d4a54b758320e96 /oryxc/src
parentb903ea3d09abf7aba9c415c37b205076b1bc1631 (diff)
Update lexopt to 0.3.2
Diffstat (limited to 'oryxc/src')
-rw-r--r--oryxc/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/oryxc/src/main.rs b/oryxc/src/main.rs
index d0ce286..c833e6d 100644
--- a/oryxc/src/main.rs
+++ b/oryxc/src/main.rs
@@ -31,6 +31,7 @@ impl Flags {
let mut rest = Vec::with_capacity(env::args().len());
let mut flags = Flags::default();
let mut parser = lexopt::Parser::from_env();
+ parser.set_short_equals(false);
while let Some(arg) = parser.next()? {
match arg {