Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
lib: Bump rustix and cap-std-ext
Browse files Browse the repository at this point in the history
cap-std-ext needs the latest rustix.
  • Loading branch information
cgwalters committed Jan 26, 2022
1 parent 1757c0c commit 5ebbcd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async-compression = { version = "0.3", features = ["gzip", "tokio"] }
bitflags = "1"
camino = "1.0.4"
cjson = "0.1.1"
cap-std-ext = "0.1.0"
cap-std-ext = "0.23"
flate2 = { features = ["zlib"], default_features = false, version = "1.0.20" }
fn-error-context = "0.2.0"
futures-util = "0.3.13"
Expand All @@ -25,7 +25,6 @@ hex = "0.4.3"
indicatif = "0.16.0"
once_cell = "1.9"
libc = "0.2.92"
rustix = "0.31.3"
oci-spec = "0.5.4"
openat = "0.1.20"
openat-ext = "0.2.0"
Expand Down
1 change: 1 addition & 0 deletions lib/src/globals.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! Global functions.
use super::Result;
use cap_std_ext::rustix;
use once_cell::sync::OnceCell;
use ostree::glib;
use std::fs::File;
Expand Down
1 change: 1 addition & 0 deletions lib/src/tar/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use crate::Result;
use anyhow::{anyhow, Context};
use camino::{Utf8Component, Utf8Path, Utf8PathBuf};
use cap_std_ext::cmdext::CapStdExtCommandExt;
use cap_std_ext::rustix;
use ostree::gio;
use ostree::prelude::FileExt;
use rustix::fd::FromFd;
Expand Down

0 comments on commit 5ebbcd3

Please sign in to comment.