mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 21:48:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* build(deps): bump the deps group with 5 updates Bumps the deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [file-format](https://github.com/mmalecot/file-format) | `0.23.0` | `0.24.0` | | [miette](https://github.com/zkat/miette) | `5.10.0` | `7.0.0` | | [supports-color](https://github.com/zkat/supports-color) | `2.1.0` | `3.0.0` | | [simple-git](https://github.com/cargo-bins/simple-git) | `0.2.2` | `0.2.3` | | [toml_edit](https://github.com/toml-rs/toml) | `0.21.1` | `0.22.4` | Updates `file-format` from 0.23.0 to 0.24.0 - [Release notes](https://github.com/mmalecot/file-format/releases) - [Changelog](https://github.com/mmalecot/file-format/blob/main/CHANGELOG.md) - [Commits](https://github.com/mmalecot/file-format/compare/v0.23.0...v0.24.0) Updates `miette` from 5.10.0 to 7.0.0 - [Release notes](https://github.com/zkat/miette/releases) - [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/miette/compare/miette-derive-v5.10.0...miette-derive-v7.0.0) Updates `supports-color` from 2.1.0 to 3.0.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.1.0...v3.0.0) Updates `simple-git` from 0.2.2 to 0.2.3 - [Commits](https://github.com/cargo-bins/simple-git/commits) Updates `toml_edit` from 0.21.1 to 0.22.4 - [Commits](https://github.com/toml-rs/toml/compare/v0.21.1...v0.22.4) --- updated-dependencies: - dependency-name: file-format dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: miette dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: simple-git dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix compilation of `leon` when feature `cli` is enabled 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>
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "binstalk-fetchers"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
description = "The binstall fetchers"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/binstalk-fetchers"
|
|
rust-version = "1.65.0"
|
|
authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
|
|
license = "GPL-3.0-only"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.68"
|
|
binstalk-downloader = { version = "0.10.0", path = "../binstalk-downloader", default-features = false, features = ["gh-api-client"] }
|
|
binstalk-types = { version = "0.7.0", path = "../binstalk-types" }
|
|
bytes = "1.4.0"
|
|
compact_str = { version = "0.7.0" }
|
|
either = "1.8.1"
|
|
itertools = "0.12.0"
|
|
leon = { version = "2.0.1", path = "../leon" }
|
|
leon-macros = { version = "1.0.0", path = "../leon-macros" }
|
|
miette = "7.0.0"
|
|
minisign-verify = "0.2.1"
|
|
once_cell = "1.18.0"
|
|
strum = "0.26.1"
|
|
thiserror = "1.0.52"
|
|
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.10.0", path = "../binstalk-downloader" }
|
|
|
|
[features]
|
|
quickinstall = []
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|