diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-04 00:31:47 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-04 00:31:47 +0100 |
| commit | 47997c56228b4c34b5e29797daf498d25fe3b6e7 (patch) | |
| tree | 07f71bd525926cae2294918f9677ff2100f6d7fd /unigen/src/main.rs | |
| parent | cc170205ec2c5273614f02e6378e581cb506860a (diff) | |
Bump lexopt to v0.3.2
Diffstat (limited to 'unigen/src/main.rs')
| -rw-r--r-- | unigen/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unigen/src/main.rs b/unigen/src/main.rs index 4851fa5..bedabc6 100644 --- a/unigen/src/main.rs +++ b/unigen/src/main.rs @@ -33,6 +33,7 @@ impl Flags { let mut rest = Vec::with_capacity(env::args().len() - 1); 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 { |