mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-17 08:06:38 +00:00
Merge branch 'main' into feat/private-github-repo
This commit is contained in:
commit
c36145f2b4
10 changed files with 192 additions and 184 deletions
|
@ -3,7 +3,7 @@ name = "cargo-binstall"
|
|||
description = "Binary installation for rust projects"
|
||||
repository = "https://github.com/cargo-bins/cargo-binstall"
|
||||
documentation = "https://docs.rs/cargo-binstall"
|
||||
version = "1.6.5"
|
||||
version = "1.6.7"
|
||||
rust-version = "1.70.0"
|
||||
authors = ["ryan <ryan@kurte.nz>"]
|
||||
edition = "2021"
|
||||
|
@ -22,12 +22,12 @@ pkg-fmt = "zip"
|
|||
pkg-fmt = "zip"
|
||||
|
||||
[dependencies]
|
||||
binstalk = { path = "../binstalk", version = "0.23.0", default-features = false }
|
||||
binstalk = { path = "../binstalk", version = "0.23.1", default-features = false }
|
||||
binstalk-manifests = { path = "../binstalk-manifests", version = "0.13.0" }
|
||||
clap = { version = "4.5.3", features = ["derive", "env"] }
|
||||
compact_str = "0.7.0"
|
||||
dirs = "5.0.1"
|
||||
file-format = { version = "0.24.0", default-features = false }
|
||||
file-format = { version = "0.25.0", default-features = false }
|
||||
home = "0.5.9"
|
||||
log = { version = "0.4.18", features = ["std"] }
|
||||
miette = "7.0.0"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Binstall.Cli.binstall"
|
||||
version="1.6.5.0"
|
||||
version="1.6.7.0"
|
||||
/>
|
||||
|
||||
<trustInfo>
|
||||
|
|
|
@ -17,5 +17,5 @@ compact_str = { version = "0.7.0", features = ["serde"] }
|
|||
leon = "3.0.0"
|
||||
miette = "7.0.0"
|
||||
normalize-path = { version = "0.2.1", path = "../normalize-path" }
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
tracing = "0.1.39"
|
||||
|
|
|
@ -51,7 +51,7 @@ serde_json = { version = "1.0.107", optional = true }
|
|||
#tar = "0.4.38"
|
||||
tar = { package = "binstall-tar", version = "0.4.39" }
|
||||
tempfile = "3.5.0"
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
tokio = { version = "1.35.0", features = [
|
||||
"macros",
|
||||
"rt-multi-thread",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "binstalk-fetchers"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
edition = "2021"
|
||||
|
||||
description = "The binstall fetchers"
|
||||
|
@ -18,14 +18,14 @@ binstalk-types = { version = "0.7.0", path = "../binstalk-types" }
|
|||
bytes = "1.4.0"
|
||||
compact_str = { version = "0.7.0" }
|
||||
either = "1.11.0"
|
||||
itertools = "0.12.0"
|
||||
itertools = "0.13.0"
|
||||
leon = "3.0.0"
|
||||
leon-macros = "1.0.1"
|
||||
miette = "7.0.0"
|
||||
minisign-verify = "0.2.1"
|
||||
once_cell = "1.18.0"
|
||||
strum = "0.26.1"
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
tokio = { version = "1.35.0", features = [
|
||||
"rt",
|
||||
"sync",
|
||||
|
|
|
@ -20,7 +20,7 @@ semver = { version = "1.0.17", features = ["serde"] }
|
|||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde-tuple-vec-map = "1.0.1"
|
||||
serde_json = "1.0.107"
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
toml_edit = { version = "0.22.12", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ serde_json = "1.0.107"
|
|||
sha2 = "0.10.7"
|
||||
simple-git = { version = "0.2.4", optional = true }
|
||||
tempfile = "3.5.0"
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
tokio = { version = "1.35.0", features = [
|
||||
"rt",
|
||||
"sync",
|
||||
|
|
|
@ -3,7 +3,7 @@ name = "binstalk"
|
|||
description = "The binstall toolkit (library interface)"
|
||||
repository = "https://github.com/cargo-bins/cargo-binstall"
|
||||
documentation = "https://docs.rs/binstalk"
|
||||
version = "0.23.0"
|
||||
version = "0.23.1"
|
||||
rust-version = "1.65.0"
|
||||
authors = ["ryan <ryan@kurte.nz>"]
|
||||
edition = "2021"
|
||||
|
@ -13,7 +13,7 @@ license = "GPL-3.0-only"
|
|||
binstalk-bins = { version = "0.4.0", path = "../binstalk-bins" }
|
||||
binstalk-downloader = { version = "0.10.3", path = "../binstalk-downloader", default-features = false }
|
||||
binstalk-git-repo-api = { version = "0.1.0", path = "../binstalk-git-repo-api" }
|
||||
binstalk-fetchers = { version = "0.4.0", path = "../binstalk-fetchers", features = [
|
||||
binstalk-fetchers = { version = "0.4.1", path = "../binstalk-fetchers", features = [
|
||||
"quickinstall",
|
||||
] }
|
||||
binstalk-registry = { version = "0.8.0", path = "../binstalk-registry" }
|
||||
|
@ -25,7 +25,7 @@ detect-targets = { version = "0.1.17", path = "../detect-targets", features = [
|
|||
"tracing",
|
||||
] }
|
||||
either = "1.11.0"
|
||||
itertools = "0.12.0"
|
||||
itertools = "0.13.0"
|
||||
jobslot = { version = "0.2.11", features = ["tokio"] }
|
||||
leon = "3.0.0"
|
||||
maybe-owned = "0.3.4"
|
||||
|
@ -35,7 +35,7 @@ simple-git = { version = "0.2.4", optional = true }
|
|||
strum = "0.26.1"
|
||||
target-lexicon = { version = "0.12.11", features = ["std"] }
|
||||
tempfile = "3.5.0"
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
tokio = { version = "1.35.0", features = [
|
||||
"rt",
|
||||
"process",
|
||||
|
|
|
@ -15,7 +15,7 @@ compact_str = { version = "0.7.0", features = ["serde"] }
|
|||
glob = "0.3.1"
|
||||
normalize-path = { version = "0.2.1", path = "../normalize-path" }
|
||||
serde = "1.0.163"
|
||||
thiserror = "1.0.52"
|
||||
thiserror = "1.0.61"
|
||||
tracing = "0.1.39"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue