mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 05:28:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* build(deps): bump compact_str from 0.7.1 to 0.8.0 in the deps group Bumps the deps group with 1 update: [compact_str](https://github.com/ParkMyCar/compact_str). Updates `compact_str` from 0.7.1 to 0.8.0 - [Changelog](https://github.com/ParkMyCar/compact_str/blob/main/CHANGELOG.md) - [Commits](https://github.com/ParkMyCar/compact_str/commits) --- updated-dependencies: - dependency-name: compact_str dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix compilation error and deprecations Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Use `CompactString::const_new` when possible Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <Jiahao_XU@outlook.com>
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "binstalk-fetchers"
|
|
version = "0.7.1"
|
|
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.68"
|
|
binstalk-downloader = { version = "0.11.5", path = "../binstalk-downloader", default-features = false }
|
|
binstalk-git-repo-api = { version = "0.3.0", path = "../binstalk-git-repo-api" }
|
|
binstalk-types = { version = "0.7.0", path = "../binstalk-types" }
|
|
bytes = "1.4.0"
|
|
compact_str = { version = "0.8.0" }
|
|
either = "1.11.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.61"
|
|
tokio = { version = "1.35.0", features = [
|
|
"rt",
|
|
"sync",
|
|
], default-features = false }
|
|
tracing = "0.1.39"
|
|
url = "2.3.1"
|
|
|
|
[dev-dependencies]
|
|
binstalk-downloader = { version = "0.11.5", path = "../binstalk-downloader" }
|
|
|
|
[features]
|
|
quickinstall = []
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|