mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 14:28:42 +00:00
feat: Support install directly from git repo (#1162)
Fixed #3 Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
dd35fba232
commit
ca00cbaccc
22 changed files with 1810 additions and 28 deletions
3
e2e-tests/manifests/workspace/Cargo.toml
Normal file
3
e2e-tests/manifests/workspace/Cargo.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[workspace]
|
||||
members = ["crates/*/*/*/*/*/*", "b/*/*/*/*"]
|
||||
exclude = ["b/c/d/e/*"]
|
13
e2e-tests/manifests/workspace/b/c/d/e/f/Cargo.toml
Normal file
13
e2e-tests/manifests/workspace/b/c/d/e/f/Cargo.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
[package]
|
||||
name = "cargo-binstall2"
|
||||
description = "Rust binary package installer for CI integration"
|
||||
repository = "https://bitbucket.org/nobodyxusdcdc/hello-world"
|
||||
version = "0.0.0"
|
||||
rust-version = "1.61.0"
|
||||
authors = ["ryan <ryan@kurte.nz>"]
|
||||
edition = "2021"
|
||||
license = "GPL-3.0"
|
||||
|
||||
[[bin]]
|
||||
name = "cargo-binstall"
|
||||
path = "src/main.rs"
|
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "cargo-binstall"
|
||||
version = "0.12.0"
|
||||
repository = "https://github.com/cargo-bins/cargo-binstall"
|
||||
|
||||
[[bin]]
|
||||
name = "cargo-binstall"
|
||||
path = "src/main.rs"
|
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "cargo-watch"
|
||||
version = "8.4.0"
|
||||
repository = "https://github.com/watchexec/cargo-watch"
|
||||
|
||||
[[bin]]
|
||||
name = "cargo-watch"
|
Loading…
Add table
Add a link
Reference in a new issue