From f327b262de1651b3f75574dd1c9e6eac330ec135 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 08:36:02 +0000 Subject: [PATCH] build(deps): bump cargo from 0.73.1 to 0.74.0 Bumps [cargo](https://github.com/rust-lang/cargo) from 0.73.1 to 0.74.0. - [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cargo/compare/0.73.1...0.74.0) --- updated-dependencies: - dependency-name: cargo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 135 +++++++++++++++++++++++++++++++++++------------------ Cargo.toml | 2 +- 2 files changed, 90 insertions(+), 47 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 090d046..42ed368 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -297,20 +297,23 @@ dependencies = [ [[package]] name = "cargo" -version = "0.73.1" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a6fe1f5394d14b81d2f3f605832a3ce35ed0bf120bc7ef437ce27fd4929c6a" +checksum = "244574fb9c19dfe9b9d11cd6398f718aca7d11fb4f0d46f22cd867876a6c4c56" dependencies = [ "anyhow", "base64", "bytesize", + "cargo-credential", + "cargo-credential-libsecret", + "cargo-credential-macos-keychain", + "cargo-credential-wincred", "cargo-platform", "cargo-util", "clap", "crates-io", "curl", "curl-sys", - "env_logger", "filetime", "flate2", "fwdansi", @@ -326,13 +329,12 @@ dependencies = [ "humantime", "ignore", "im-rc", - "indexmap 1.9.3", + "indexmap 2.0.0", "itertools 0.10.5", "jobserver", "lazycell", "libc", "libgit2-sys", - "log", "memchr", "opener", "openssl", @@ -357,6 +359,9 @@ dependencies = [ "time", "toml 0.7.8", "toml_edit 0.19.15", + "tracing", + "tracing-subscriber", + "unicase", "unicode-width", "unicode-xid", "url", @@ -364,20 +369,66 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "cargo-credential" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "626c6c87f7906515d241db80b2e35e6818ea771da38003dec873914d417f48b5" +dependencies = [ + "anyhow", + "libc", + "serde", + "serde_json", + "thiserror", + "time", + "windows-sys 0.48.0", +] + +[[package]] +name = "cargo-credential-libsecret" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbbb9372b45e669060bba532a7a78f7e05a5791d8450eceab93006d72a542ee4" +dependencies = [ + "anyhow", + "cargo-credential", + "libloading", +] + +[[package]] +name = "cargo-credential-macos-keychain" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a07e26e78213508bf6007c9187f48ef1c98584d912d8195496828f30b7e2796" +dependencies = [ + "cargo-credential", + "security-framework", +] + +[[package]] +name = "cargo-credential-wincred" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6637491b9d0fe5350a839903742de909c01e8440b2eadb561177039cbd8f0c71" +dependencies = [ + "cargo-credential", + "windows-sys 0.48.0", +] + [[package]] name = "cargo-platform" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" +checksum = "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36" dependencies = [ "serde", ] [[package]] name = "cargo-util" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd54c8b94a0c851d687924460637361c355afafa72d973fe8644499fbdee8fae" +checksum = "77042b5b585f701f1cfb4b6b12ebc02b9b0cefbc8dcce235906b6bf376d4245d" dependencies = [ "anyhow", "core-foundation", @@ -385,12 +436,12 @@ dependencies = [ "hex", "jobserver", "libc", - "log", "miow", "same-file", "sha2", "shell-escape", "tempfile", + "tracing", "walkdir", "windows-sys 0.48.0", ] @@ -582,15 +633,15 @@ dependencies = [ [[package]] name = "crates-io" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "876aa69b4afca5f2eb5e23daa3445930faf829bcb67075a20ffa884f11f8c57c" +checksum = "4bd35a7899c7804e2f8e305438d7b70a852c0424009f3ac29ca4f6733f2aec85" dependencies = [ - "anyhow", "curl", "percent-encoding", "serde", "serde_json", + "thiserror", "url", ] @@ -964,19 +1015,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "env_logger" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" -dependencies = [ - "humantime", - "is-terminal", - "log", - "regex", - "termcolor", -] - [[package]] name = "equivalent" version = "1.0.1" @@ -2314,6 +2352,16 @@ dependencies = [ "pkg-config", ] +[[package]] +name = "libloading" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + [[package]] name = "libnghttp2-sys" version = "0.1.8+1.55.1" @@ -2472,11 +2520,11 @@ dependencies = [ [[package]] name = "miow" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ffbca2f655e33c08be35d87278e5b18b89550a37dbd598c20db92f6a471123" +checksum = "359f76430b20a79f9e20e115b3428614e654f04fab314482fc0fda0ebd3c6044" dependencies = [ - "windows-sys 0.42.0", + "windows-sys 0.48.0", ] [[package]] @@ -2591,6 +2639,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "normpath" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" +dependencies = [ + "windows-sys 0.48.0", +] + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -2646,11 +2703,12 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "opener" -version = "0.5.2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "293c15678e37254c15bd2f092314abb4e51d7fdde05c2021279c12631b54f005" +checksum = "6c62dcb6174f9cb326eac248f07e955d5d559c272730b6c03e396b443b562788" dependencies = [ "bstr", + "normpath", "winapi", ] @@ -4362,21 +4420,6 @@ dependencies = [ "windows-targets 0.48.5", ] -[[package]] -name = "windows-sys" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - [[package]] name = "windows-sys" version = "0.45.0" diff --git a/Cargo.toml b/Cargo.toml index be7c557..e97226d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ include = ["data", "src", "Cargo.lock", "Cargo.toml", "build.rs"] anyhow = "1.0.75" askalono.workspace = true bstr = "1.6.2" -cargo = "0.73.1" +cargo = "0.74.0" chumsky = "1.0.0-alpha.4" expand = "0.3.0" flate2 = "1.0.27"