Disable unicode feature of getopts

This commit is contained in:
Matt Brubeck 2025-09-03 10:22:48 -07:00
parent dfc4c4fd7b
commit cb6b815b82
2 changed files with 1 additions and 10 deletions

9
Cargo.lock generated
View file

@ -248,9 +248,6 @@ name = "getopts"
version = "0.2.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
dependencies = [
"unicode-width",
]
[[package]]
name = "getrandom"
@ -895,12 +892,6 @@ version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
[[package]]
name = "unicode-width"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
[[package]]
name = "untrusted"
version = "0.9.0"

View file

@ -15,7 +15,7 @@ exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md
configparser = "3.0"
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
futures-util = "0.3"
getopts = "0.2.24"
getopts = { version = "0.2.24", default-features = false }
glob = "0.3"
log = "0.4"
mime_guess = "2.0"