summaryrefslogtreecommitdiff
path: root/oryxc
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
parentb903ea3d09abf7aba9c415c37b205076b1bc1631 (diff)
Update lexopt to 0.3.2
Diffstat (limited to 'oryxc')
-rw-r--r--oryxc/Cargo.lock4
-rw-r--r--oryxc/Cargo.toml2
-rw-r--r--oryxc/src/main.rs1
3 files changed, 4 insertions, 3 deletions
diff --git a/oryxc/Cargo.lock b/oryxc/Cargo.lock
index eeaf054..9d222ed 100644
--- a/oryxc/Cargo.lock
+++ b/oryxc/Cargo.lock
@@ -67,9 +67,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
name = "lexopt"
-version = "0.1.0"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c5d9b5843e8c9311ff602e6bd50855015e99e75159c2c54fe104cfac241f552"
+checksum = "803ec87c9cfb29b9d2633f20cba1f488db3fd53f2158b1024cbefb47ba05d413"
[[package]]
name = "libc"
diff --git a/oryxc/Cargo.toml b/oryxc/Cargo.toml
index 984d910..1b418f3 100644
--- a/oryxc/Cargo.toml
+++ b/oryxc/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2024"
crossbeam-deque = "0.8.6"
dashmap = "6.1.0"
# icu = { version = "2.1.1", features = ["compiled_data"] }
-lexopt = "0.1.0"
+lexopt = "0.3.2"
# num-rational = "0.4.2"
phf = { version = "0.13.1", features = ["macros"] }
soa-rs = "0.9.1"
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 {