wgetopt: extract into new crate

Move `src/wgetopt.rs` into a new dedicated crate.

Closes #12317
This commit is contained in:
Daniel Rainer
2026-01-12 19:07:33 +01:00
committed by Johannes Altmanninger
parent 154c095e66
commit 93eb9ee4d8
12 changed files with 35 additions and 11 deletions

View File

@@ -30,6 +30,7 @@ fish-util = { path = "crates/util" }
fish-wcstringutil = { path = "crates/wcstringutil" }
fish-widecharwidth = { path = "crates/widecharwidth" }
fish-widestring = { path = "crates/widestring" }
fish-wgetopt = { path = "crates/wgetopt" }
libc = "0.2.177"
# lru pulls in hashbrown by default, which uses a faster (though less DoS resistant) hashing algo.
# disabling default features uses the stdlib instead, but it doubles the time to rewrite the history
@@ -107,6 +108,7 @@ fish-util.workspace = true
fish-wcstringutil.workspace = true
fish-widecharwidth.workspace = true
fish-widestring.workspace = true
fish-wgetopt.workspace = true
libc.workspace = true
lru.workspace = true
macro_rules_attribute = "0.2.2"