Skip to content

Commit

Permalink
Merge pull request ostreedev#219 from cgwalters/new-release
Browse files Browse the repository at this point in the history
Release 0.6.1
  • Loading branch information
cgwalters authored Jan 26, 2022
2 parents e8282c6 + 72afaaf commit 9645cee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
9 changes: 3 additions & 6 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
name = "ostree-ext"
readme = "README.md"
repository = "https://github.com/ostreedev/ostree-rs-ext"
version = "0.6.0"
version = "0.6.1"

[dependencies]
anyhow = "1.0"
Expand All @@ -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,10 +25,7 @@ hex = "0.4.3"
indicatif = "0.16.0"
once_cell = "1.9"
libc = "0.2.92"
rustix = "0.31.3"
# oci-spec = "0.5.3"
# Until the next release
oci-spec = { git = "https://github.com/containers/oci-spec-rs" }
oci-spec = "0.5.4"
openat = "0.1.20"
openat-ext = "0.2.0"
openssl = "0.10.33"
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 9645cee

Please sign in to comment.