From ed9ee2c1882069c3559ee767dfe2831e50d2d599 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 24 May 2022 15:24:33 +0200 Subject: [PATCH] Add missing .git suffixes for GitHub VCS deps --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- nih_plug_xtask/Cargo.toml | 2 +- nih_plug_xtask/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dfc699a..437ac869 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -470,7 +470,7 @@ checksum = "17cc5e6b5ab06331c33589842070416baa137e8b0eb912b008cfd4a78ada7919" [[package]] name = "clap-sys" version = "0.25.0" -source = "git+https://github.com/robbert-vdh/clap-sys?branch=feature/clap-0.25#c8e5011a66377aa14d9f719a52255d30a48232ed" +source = "git+https://github.com/robbert-vdh/clap-sys.git?branch=feature/clap-0.25#c8e5011a66377aa14d9f719a52255d30a48232ed" [[package]] name = "clipboard-win" @@ -2813,7 +2813,7 @@ dependencies = [ [[package]] name = "reflink" version = "0.1.3" -source = "git+https://github.com/nicokoch/reflink?rev=e8d93b465f5d9ad340cd052b64bbc77b8ee107e2#e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" +source = "git+https://github.com/nicokoch/reflink.git?rev=e8d93b465f5d9ad340cd052b64bbc77b8ee107e2#e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" dependencies = [ "libc", "winapi", diff --git a/Cargo.toml b/Cargo.toml index 58ab492d..cfcb67a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ atomic_refcell = "0.1" bitflags = "1.3" cfg-if = "1.0" # For CLAP 0.25 -clap-sys = { git = "https://github.com/robbert-vdh/clap-sys", branch = "feature/clap-0.25" } +clap-sys = { git = "https://github.com/robbert-vdh/clap-sys.git", branch = "feature/clap-0.25" } crossbeam = "0.8" lazy_static = "1.4" log = { version = "0.4", features = ["std", "release_max_level_info"] } diff --git a/nih_plug_xtask/Cargo.toml b/nih_plug_xtask/Cargo.toml index 5f331bd0..40d5f571 100644 --- a/nih_plug_xtask/Cargo.toml +++ b/nih_plug_xtask/Cargo.toml @@ -10,6 +10,6 @@ license = "ISC" anyhow = "1.0" goblin = "0.5" # Version 0.1.3 from crates.io assumes a 64-bit toolchain -reflink = { git = "https://github.com/nicokoch/reflink", rev = "e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" } +reflink = { git = "https://github.com/nicokoch/reflink.git", rev = "e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" } serde = { version = "1.0", features = ["derive"] } toml = "0.5" diff --git a/nih_plug_xtask/README.md b/nih_plug_xtask/README.md index d12ffdd0..ea87b144 100644 --- a/nih_plug_xtask/README.md +++ b/nih_plug_xtask/README.md @@ -22,7 +22,7 @@ Then add `nih_plug_xtask` to your new xtask package's dependencies: # xtask/Cargo.toml [dependencies] -nih_plug_xtask = { git = "https://github.com/robbert-vdh/nih-plug" } +nih_plug_xtask = { git = "https://github.com/robbert-vdh/nih-plug.git" } ``` Call `nih_plug_xtask`'s main function own xtask binary: