cargo-binstall/crates/binstalk-registry/Cargo.toml
dependabot[bot] 120bca5a45
build(deps): bump the deps group with 2 updates (#2084)
Bumps the deps group with 2 updates: [async-trait](https://github.com/dtolnay/async-trait) and [cargo_toml](https://gitlab.com/lib.rs/cargo_toml).


Updates `async-trait` from 0.1.87 to 0.1.88
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.87...0.1.88)

Updates `cargo_toml` from 0.21.0 to 0.22.1
- [Commits](https://gitlab.com/lib.rs/cargo_toml/commits/v0.22.1)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: cargo_toml
  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>
2025-03-15 01:25:01 +00:00

57 lines
1.7 KiB
TOML

[package]
name = "binstalk-registry"
version = "0.11.15"
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.88"
base16 = "0.2.1"
binstalk-downloader = { version = "0.13.14", path = "../binstalk-downloader", default-features = false, features = [
"json",
] }
binstalk-types = { version = "0.9.4", path = "../binstalk-types" }
cargo-toml-workspace = { version = "7.0.5", path = "../cargo-toml-workspace" }
compact_str = { version = "0.9.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 = "2.0.11"
tokio = { version = "1.44.0", features = [
"rt",
"sync",
], default-features = false }
tracing = "0.1.39"
url = "2.5.4"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
toml_edit = { version = "0.22.12", features = ["serde"] }
binstalk-downloader = { version = "0.13.14", 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