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

Release 0.6.1 #219

Merged
merged 3 commits into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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