diff options
Diffstat (limited to 'unigen')
| -rw-r--r-- | unigen/Cargo.toml | 2 | ||||
| -rw-r--r-- | unigen/src/main.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/unigen/Cargo.toml b/unigen/Cargo.toml index e0c6b4d..587afb7 100644 --- a/unigen/Cargo.toml +++ b/unigen/Cargo.toml @@ -4,4 +4,4 @@ version = "0.1.0" edition = "2024" [dependencies] -lexopt = "0.1.0" +lexopt = "0.3.2" 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 { |