mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-23 14:08:43 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Some checks failed
Release-plz / Release-plz (push) Has been cancelled
* build(deps): bump the deps group with 3 updates Bumps the deps group with 3 updates: [compact_str](https://github.com/ParkMyCar/compact_str), [bzip2](https://github.com/trifectatechfoundation/bzip2-rs) and [fs4](https://github.com/al8n/fs4-rs). Updates `compact_str` from 0.8.1 to 0.9.0 - [Changelog](https://github.com/ParkMyCar/compact_str/blob/main/CHANGELOG.md) - [Commits](https://github.com/ParkMyCar/compact_str/compare/v0.8.1...v0.9.0) Updates `bzip2` from 0.5.1 to 0.5.2 - [Release notes](https://github.com/trifectatechfoundation/bzip2-rs/releases) - [Commits](https://github.com/trifectatechfoundation/bzip2-rs/compare/v0.5.1...v0.5.2) Updates `fs4` from 0.12.0 to 0.13.0 - [Release notes](https://github.com/al8n/fs4-rs/releases) - [Changelog](https://github.com/al8n/fs4-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/al8n/fs4-rs/commits) --- updated-dependencies: - dependency-name: compact_str dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: bzip2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: fs4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix use of fs4::fs_std::FileExt::try_lock* Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "binstalk-fetchers"
|
|
version = "0.10.14"
|
|
edition = "2021"
|
|
|
|
description = "The binstall fetchers"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/binstalk-fetchers"
|
|
rust-version = "1.70.0"
|
|
authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
|
|
license = "GPL-3.0-only"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.84"
|
|
binstalk-downloader = { version = "0.13.13", path = "../binstalk-downloader", default-features = false }
|
|
binstalk-git-repo-api = { version = "0.5.15", path = "../binstalk-git-repo-api" }
|
|
binstalk-types = { version = "0.9.3", path = "../binstalk-types" }
|
|
bytes = "1.4.0"
|
|
compact_str = { version = "0.9.0" }
|
|
either = "1.11.0"
|
|
itertools = "0.14.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.27.0"
|
|
thiserror = "2.0.11"
|
|
tokio = { version = "1.35.0", features = [
|
|
"rt",
|
|
"sync",
|
|
], default-features = false }
|
|
tracing = "0.1.39"
|
|
url = "2.5.4"
|
|
|
|
[dev-dependencies]
|
|
binstalk-downloader = { version = "0.13.13", path = "../binstalk-downloader" }
|
|
|
|
[features]
|
|
quickinstall = []
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|