From 461bae92447d84565ece5aac5172bedd1c8edb45 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 21 Jul 2023 11:06:21 +1000 Subject: [PATCH] Move recent/minimal lock files A while back we added two lock files that were to track dependencies of two successful test runs, one with a minimal set of dependencies and one with a recent set of dependencies (ie, recent dependency versions). We never used these lock files in CI however. In preparation for using the lock files in CI, and in order to be uniform with `rust-bitcoin`, move the lock files to the crate root and rename them to: - Cargo-minimal.lock - Cargo-recent.lock --- contrib/Cargo.minimal.lock => Cargo-minimal.lock | 0 contrib/Cargo.latest.lock => Cargo-recent.lock | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename contrib/Cargo.minimal.lock => Cargo-minimal.lock (100%) rename contrib/Cargo.latest.lock => Cargo-recent.lock (100%) diff --git a/contrib/Cargo.minimal.lock b/Cargo-minimal.lock similarity index 100% rename from contrib/Cargo.minimal.lock rename to Cargo-minimal.lock diff --git a/contrib/Cargo.latest.lock b/Cargo-recent.lock similarity index 100% rename from contrib/Cargo.latest.lock rename to Cargo-recent.lock