mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 04:28:43 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the deps group with 2 updates: [itertools](https://github.com/rust-itertools/itertools) and [thiserror](https://github.com/dtolnay/thiserror). Updates `itertools` from 0.12.1 to 0.13.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0) Updates `thiserror` from 1.0.60 to 1.0.61 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.60...1.0.61) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57 lines
1.7 KiB
TOML
57 lines
1.7 KiB
TOML
[package]
|
|
name = "binstalk-registry"
|
|
version = "0.8.0"
|
|
edition = "2021"
|
|
rust-version = "1.65.0"
|
|
|
|
description = "The binstall toolkit for fetching package from arbitrary registry"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/binstalk-registry"
|
|
authors = ["Jiahao_XU@outlook <Jiahao_XU@outlook.com>"]
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.68"
|
|
base16 = "0.2.1"
|
|
binstalk-downloader = { version = "0.10.3", path = "../binstalk-downloader", default-features = false, features = [
|
|
"json",
|
|
] }
|
|
binstalk-types = { version = "0.7.0", path = "../binstalk-types" }
|
|
cargo-toml-workspace = { version = "6.0.0", path = "../cargo-toml-workspace" }
|
|
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" }
|
|
once_cell = "1.18.0"
|
|
semver = { version = "1.0.17", features = ["serde"] }
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
sha2 = "0.10.7"
|
|
simple-git = { version = "0.2.4", optional = true }
|
|
tempfile = "3.5.0"
|
|
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]
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
toml_edit = { version = "0.22.12", features = ["serde"] }
|
|
binstalk-downloader = { version = "0.10.3", path = "../binstalk-downloader", default-features = false, features = [
|
|
"rustls",
|
|
] }
|
|
|
|
[features]
|
|
git = ["simple-git"]
|
|
|
|
rustls = ["simple-git?/rustls"]
|
|
native-tls = ["simple-git?/native-tls"]
|
|
|
|
crates_io_api = []
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|