Skip to content

Commit 9645cee

Browse files
authored
Merge pull request ostreedev#219 from cgwalters/new-release
Release 0.6.1
2 parents e8282c6 + 72afaaf commit 9645cee

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

lib/Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
66
name = "ostree-ext"
77
readme = "README.md"
88
repository = "https://github.com/ostreedev/ostree-rs-ext"
9-
version = "0.6.0"
9+
version = "0.6.1"
1010

1111
[dependencies]
1212
anyhow = "1.0"
@@ -16,7 +16,7 @@ async-compression = { version = "0.3", features = ["gzip", "tokio"] }
1616
bitflags = "1"
1717
camino = "1.0.4"
1818
cjson = "0.1.1"
19-
cap-std-ext = "0.1.0"
19+
cap-std-ext = "0.23"
2020
flate2 = { features = ["zlib"], default_features = false, version = "1.0.20" }
2121
fn-error-context = "0.2.0"
2222
futures-util = "0.3.13"
@@ -25,10 +25,7 @@ hex = "0.4.3"
2525
indicatif = "0.16.0"
2626
once_cell = "1.9"
2727
libc = "0.2.92"
28-
rustix = "0.31.3"
29-
# oci-spec = "0.5.3"
30-
# Until the next release
31-
oci-spec = { git = "https://github.com/containers/oci-spec-rs" }
28+
oci-spec = "0.5.4"
3229
openat = "0.1.20"
3330
openat-ext = "0.2.0"
3431
openssl = "0.10.33"

lib/src/globals.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! Global functions.
22
33
use super::Result;
4+
use cap_std_ext::rustix;
45
use once_cell::sync::OnceCell;
56
use ostree::glib;
67
use std::fs::File;

lib/src/tar/write.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ use crate::Result;
1111
use anyhow::{anyhow, Context};
1212
use camino::{Utf8Component, Utf8Path, Utf8PathBuf};
1313
use cap_std_ext::cmdext::CapStdExtCommandExt;
14+
use cap_std_ext::rustix;
1415
use ostree::gio;
1516
use ostree::prelude::FileExt;
1617
use rustix::fd::FromFd;

0 commit comments

Comments
 (0)