Commit 32a45edb authored by Ian Jackson's avatar Ian Jackson
Browse files

Downgrade to cc 1.0.93 in Cargo.lock

As proposed in
  tpo/core/arti!2231 (comment 3043322)

I made this commit by:

  * Taking the hunk to add `cc = "1.0.93"` from !2231.
  * Running `cargo fetch`
  * Staging everything except the additions of cc
    to `Cargo.toml` and `Cargo.lock`

Here is the output I got from cargo:

      Updating crates.io index
       Locking 5 packages to latest compatible versions
   Downgrading addr2line v0.22.0 -> v0.21.0 (latest: v0.23.0)
   Downgrading backtrace v0.3.73 -> v0.3.71 (latest: v0.3.73)
   Downgrading cc v1.0.100 -> v1.0.93 (latest: v1.0.101)
   Downgrading gimli v0.29.0 -> v0.28.1 (latest: v0.30.0)
   Downgrading object v0.36.0 -> v0.32.2 (latest: v0.36.0)
    Downloaded cc v1.0.93
    Downloaded derive-deftly v0.13.1
    Downloaded 2 crates (149.8 KB) in 1.52s
parent bc0eea72
Loading
Loading
Loading
Loading
+15 −16
Original line number Diff line number Diff line
@@ -4,9 +4,9 @@ version = 3

[[package]]
name = "addr2line"
version = "0.22.0"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
 "gimli",
]
@@ -742,9 +742,9 @@ dependencies = [

[[package]]
name = "backtrace"
version = "0.3.73"
version = "0.3.71"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
dependencies = [
 "addr2line",
 "cc",
@@ -887,13 +887,12 @@ version = "0.4.6"

[[package]]
name = "cc"
version = "1.0.100"
version = "1.0.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c891175c3fb232128f48de6590095e59198bbeb8620c310be349bfc3afd12c7b"
checksum = "7a7e1056f2c248bb99dbb2e1100f26bf818fbfbcb6197377192fbb9575e5fc90"
dependencies = [
 "jobserver",
 "libc",
 "once_cell",
]

[[package]]
@@ -1288,7 +1287,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063829d0f555b9fc22c8ddd206f1602372c4186e7b51046c43716f295182561d"
dependencies = [
 "derive-deftly-macros",
 "heck 0.4.1",
 "heck 0.5.0",
]

[[package]]
@@ -1297,14 +1296,14 @@ version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68a27f0a2651f507903d67f8fb0688291e3e69f70381cdb5ee9729366f795f80"
dependencies = [
 "heck 0.4.1",
 "indexmap 1.9.3",
 "itertools 0.11.0",
 "heck 0.5.0",
 "indexmap 2.2.6",
 "itertools 0.13.0",
 "proc-macro-crate",
 "proc-macro2",
 "quote",
 "sha3",
 "strum 0.25.0",
 "strum 0.26.3",
 "syn 2.0.68",
 "void",
]
@@ -2064,9 +2063,9 @@ dependencies = [

[[package]]
name = "gimli"
version = "0.29.0"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"

[[package]]
name = "glob-match"
@@ -3039,9 +3038,9 @@ dependencies = [

[[package]]
name = "object"
version = "0.36.0"
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434"
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
 "memchr",
]