mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-23 05:58:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.7` | `4.4.8` | | [file-format](https://github.com/mmalecot/file-format) | `0.21.0` | `0.22.0` | | [command-group](https://github.com/watchexec/command-group) | `3.0.0` | `4.1.0` | | [toml_edit](https://github.com/toml-rs/toml) | `0.20.7` | `0.21.0` | | [default-net](https://github.com/shellrow/default-net) | `0.19.0` | `0.20.0` | Updates `clap` from 4.4.7 to 4.4.8 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.7...v4.4.8) Updates `file-format` from 0.21.0 to 0.22.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.21.0...v0.22.0) Updates `command-group` from 3.0.0 to 4.1.0 - [Changelog](https://github.com/watchexec/command-group/blob/main/CHANGELOG.md) - [Commits](https://github.com/watchexec/command-group/compare/v3.0.0...v4.1.0) Updates `toml_edit` from 0.20.7 to 0.21.0 - [Commits](https://github.com/toml-rs/toml/compare/v0.20.7...v0.21.0) Updates `default-net` from 0.19.0 to 0.20.0 - [Release notes](https://github.com/shellrow/default-net/releases) - [Commits](https://github.com/shellrow/default-net/compare/v0.19.0...v0.20.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: file-format dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: command-group dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: default-net dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
1.7 KiB
TOML
47 lines
1.7 KiB
TOML
[package]
|
|
name = "binstalk-registry"
|
|
version = "0.2.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.9.3", path = "../binstalk-downloader", default-features = false, features = ["json"] }
|
|
binstalk-types = { version = "0.6.1", path = "../binstalk-types" }
|
|
cargo-toml-workspace = { version = "2.0.0", path = "../cargo-toml-workspace" }
|
|
compact_str = { version = "0.7.0", features = ["serde"] }
|
|
leon = { version = "2.0.1", path = "../leon" }
|
|
miette = "5.9.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.1.1", path = "../simple-git", optional = true }
|
|
tempfile = "3.5.0"
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.30.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.21.0", features = ["serde"] }
|
|
binstalk-downloader = { version = "0.9.3", path = "../binstalk-downloader", default-features = false, features = ["rustls"] }
|
|
|
|
[features]
|
|
git = ["simple-git"]
|
|
|
|
crates_io_api = []
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|