mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 05:28:42 +00:00
build(deps): bump the deps group with 3 updates (#1993)
* build(deps): bump the deps group with 3 updates Bumps the deps group with 3 updates: [target-lexicon](https://github.com/bytecodealliance/target-lexicon), [cargo_toml](https://gitlab.com/lib.rs/cargo_toml) and [fs4](https://github.com/al8n/fs4-rs). Updates `target-lexicon` from 0.12.16 to 0.13.0 - [Commits](https://github.com/bytecodealliance/target-lexicon/compare/v0.12.16...v0.13.0) Updates `cargo_toml` from 0.20.5 to 0.21.0 - [Commits](https://gitlab.com/lib.rs/cargo_toml/commits/main) Updates `fs4` from 0.11.1 to 0.12.0 - [Release notes](https://github.com/al8n/fs4-rs/releases) - [Commits](https://github.com/al8n/fs4-rs/commits) --- updated-dependencies: - dependency-name: target-lexicon dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: cargo_toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: fs4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix use of cargo-toml in parse-meta.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
parent
7384dab8cf
commit
e9f25187d7
5 changed files with 10 additions and 10 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -630,9 +630,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "cargo_toml"
|
||||
version = "0.20.5"
|
||||
version = "0.21.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "88da5a13c620b4ca0078845707ea9c3faf11edbc3ffd8497d11d686211cd1ac0"
|
||||
checksum = "5fbd1fe9db3ebf71b89060adaf7b0504c2d6a425cf061313099547e382c2e472"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"toml",
|
||||
|
@ -1164,9 +1164,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "fs4"
|
||||
version = "0.11.1"
|
||||
version = "0.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e871a4cfa68bb224863b53149d973df1ac8d1ed2fa1d1bfc37ac1bb65dd37207"
|
||||
checksum = "c29c30684418547d476f0b48e84f4821639119c483b1eccd566c8cd0cd05f521"
|
||||
dependencies = [
|
||||
"rustix",
|
||||
"windows-sys 0.52.0",
|
||||
|
@ -4130,9 +4130,9 @@ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|||
|
||||
[[package]]
|
||||
name = "target-lexicon"
|
||||
version = "0.12.16"
|
||||
version = "0.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
||||
checksum = "4ff4a4048091358129767b8a200d6927f58876c8b5ea16fb7b0222d43b79bfa8"
|
||||
|
||||
[[package]]
|
||||
name = "tempfile"
|
||||
|
|
|
@ -33,7 +33,7 @@ miette = "7.0.0"
|
|||
semver = { version = "1.0.17", features = ["serde"] }
|
||||
simple-git = { version = "0.2.10", optional = true }
|
||||
strum = "0.26.1"
|
||||
target-lexicon = { version = "0.12.11", features = ["std"] }
|
||||
target-lexicon = { version = "0.13.0", features = ["std"] }
|
||||
tempfile = "3.5.0"
|
||||
thiserror = "2.0.1"
|
||||
tokio = { version = "1.35.0", features = [
|
||||
|
|
|
@ -24,7 +24,7 @@ fn parse_meta() {
|
|||
&[Product {
|
||||
name: Some("cargo-binstall".to_string()),
|
||||
path: Some("src/main.rs".to_string()),
|
||||
edition: Edition::E2021,
|
||||
edition: Some(Edition::E2021),
|
||||
..Default::default()
|
||||
},],
|
||||
);
|
||||
|
|
|
@ -10,7 +10,7 @@ authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
|
|||
license = "Apache-2.0 OR MIT"
|
||||
|
||||
[dependencies]
|
||||
cargo_toml = "0.20.0"
|
||||
cargo_toml = "0.21.0"
|
||||
compact_str = { version = "0.8.0", features = ["serde"] }
|
||||
glob = "0.3.1"
|
||||
normalize-path = { version = "0.2.1", path = "../normalize-path" }
|
||||
|
|
|
@ -10,4 +10,4 @@ edition = "2021"
|
|||
license = "Apache-2.0 OR MIT"
|
||||
|
||||
[dependencies]
|
||||
fs4 = "0.11.0"
|
||||
fs4 = "0.12.0"
|
||||
|
|
Loading…
Add table
Reference in a new issue