Fix build error on linux
Some checks failed
/ dev-shell (push) Successful in 45s
/ check (push) Failing after 3m43s
/ rust-packages (push) Failing after 3m58s
/ terraform-providers (push) Successful in 1m47s
/ systems (push) Successful in 29m39s

This commit is contained in:
Kaare Hoff Skovgaard 2025-08-05 22:04:41 +02:00
parent 8640dce7bc
commit 3ad3a21eed
Signed by: khs
GPG key ID: C7D890804F01E9F0
2 changed files with 2 additions and 13 deletions

13
rust/Cargo.lock generated
View file

@ -751,19 +751,6 @@ version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
[[package]]
name = "openbao-helper"
version = "1.0.0"
dependencies = [
"anyhow",
"clap",
"common",
"hakari",
"log",
"nix",
"serde",
]
[[package]]
name = "percent-encoding"
version = "2.3.1"

View file

@ -1,3 +1,5 @@
#[cfg(target_os = "linux")]
use nix::unistd::execvpe;
use std::{
collections::{BTreeMap, BTreeSet},
ffi::{CString, OsString},