summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorStefan Kreutz <mail@skreutz.com>2023-05-18 21:56:36 +0200
committerStefan Kreutz <mail@skreutz.com>2023-05-18 21:56:36 +0200
commitbe6e70ffde1ef213166b19330cf9418f9bad2f3b (patch)
tree50b41659573041fae9c135858417ee8989df505d /Cargo.lock
parent49f0bc6c310751b11cf72e893858ca19e9a2e9a4 (diff)
downloadwpa-psk-be6e70ffde1ef213166b19330cf9418f9bad2f3b.tar
Use clap without wrap_help feature
With the wrap_help feature, clap tries to determine the terminal width using the terminal-size crate. This involves access to the temporary directory, violating the stdio pledge on OpenBSD and thus aborting the process. This commit disables clap's wrap_help feature to keep the simple stdio pledge. Another solution could to pledge stdio and tmppath.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock11
1 files changed, 0 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 585167a..bd8c165 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -127,7 +127,6 @@ dependencies = [
"bitflags",
"clap_lex",
"strsim",
- "terminal_size",
]
[[package]]
@@ -436,16 +435,6 @@ dependencies = [
]
[[package]]
-name = "terminal_size"
-version = "0.2.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
-dependencies = [
- "rustix",
- "windows-sys",
-]
-
-[[package]]
name = "termtree"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Generated by cgit. See skreutz.com for my tech blog and contact information.