Add missing .git suffixes for GitHub VCS deps
This commit is contained in:
parent
4c54716cc2
commit
ed9ee2c188
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue