From a853e9b8cb3d227eafaf26c5e18dc70b497113bb Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 1 Dec 2023 16:38:13 -0500 Subject: [PATCH] lib: Track ostree-ext git This will help ensure we're testing what's there before release, in particular https://github.com/ostreedev/ostree-rs-ext/pull/569 Signed-off-by: Colin Walters --- deny.toml | 5 ++++- lib/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index bd1b6fc8a..c90b1c268 100644 --- a/deny.toml +++ b/deny.toml @@ -6,7 +6,10 @@ allow = ["Apache-2.0", "Apache-2.0 WITH LLVM-exception", "MIT", "BSD-3-Clause", # We want to require FIPS validation downstream, so we use openssl name = "ring" + [sources] unknown-registry = "deny" unknown-git = "deny" -allow-git = [] +allow-git = [ + "https://github.com/ostreedev/ostree-rs-ext" +] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 2992f69ec..0430d777f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -15,7 +15,7 @@ anstream = "0.6.4" anstyle = "1.0.4" anyhow = "1.0" camino = { version = "1.0.4", features = ["serde1"] } -ostree-ext = "0.12" +ostree-ext = { version = "0.12", git = "https://github.com/ostreedev/ostree-rs-ext/"} chrono = { version = "0.4.23", features = ["serde"] } clap = { version= "4.2", features = ["derive"] } clap_mangen = { version = "0.2", optional = true }