Lockfile update

This commit is contained in:
David Tolnay 2023-02-01 12:52:22 -08:00
parent 4881632352
commit 0ee707c355
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
5 changed files with 20 additions and 20 deletions

20
third-party/BUCK generated vendored
View File

@ -18,23 +18,23 @@ rust_library(
alias(
name = "cc",
actual = ":cc-1.0.78",
actual = ":cc-1.0.79",
visibility = ["PUBLIC"],
)
rust_library(
name = "cc-1.0.78",
name = "cc-1.0.79",
srcs = [
"vendor/cc-1.0.78/src/com.rs",
"vendor/cc-1.0.78/src/lib.rs",
"vendor/cc-1.0.78/src/registry.rs",
"vendor/cc-1.0.78/src/setup_config.rs",
"vendor/cc-1.0.78/src/vs_instances.rs",
"vendor/cc-1.0.78/src/winapi.rs",
"vendor/cc-1.0.78/src/windows_registry.rs",
"vendor/cc-1.0.79/src/com.rs",
"vendor/cc-1.0.79/src/lib.rs",
"vendor/cc-1.0.79/src/registry.rs",
"vendor/cc-1.0.79/src/setup_config.rs",
"vendor/cc-1.0.79/src/vs_instances.rs",
"vendor/cc-1.0.79/src/winapi.rs",
"vendor/cc-1.0.79/src/windows_registry.rs",
],
crate = "cc",
crate_root = "vendor/cc-1.0.78/src/lib.rs",
crate_root = "vendor/cc-1.0.79/src/lib.rs",
edition = "2018",
rustc_flags = ["--cap-lints=allow"],
visibility = [],

4
third-party/Cargo.lock generated vendored
View File

@ -10,9 +10,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "cc"
version = "1.0.78"
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
[[package]]
name = "clap"

2
third-party/bazel/BUILD.bazel generated vendored
View File

@ -27,7 +27,7 @@ filegroup(
# Workspace Member Dependencies
alias(
name = "cc",
actual = "@vendor__cc-1.0.78//:cc",
actual = "@vendor__cc-1.0.79//:cc",
tags = ["manual"],
)

View File

@ -37,5 +37,5 @@ rust_library(
"noclippy",
"norustfmt",
],
version = "1.0.78",
version = "1.0.79",
)

12
third-party/bazel/defs.bzl generated vendored
View File

@ -291,7 +291,7 @@ def aliases(
_NORMAL_DEPENDENCIES = {
"third-party": {
_COMMON_CONDITION: {
"cc": "@vendor__cc-1.0.78//:cc",
"cc": "@vendor__cc-1.0.79//:cc",
"clap": "@vendor__clap-4.1.4//:clap",
"codespan-reporting": "@vendor__codespan-reporting-0.11.1//:codespan_reporting",
"once_cell": "@vendor__once_cell-1.17.0//:once_cell",
@ -382,12 +382,12 @@ def crate_repositories():
maybe(
http_archive,
name = "vendor__cc-1.0.78",
sha256 = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d",
name = "vendor__cc-1.0.79",
sha256 = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/cc/1.0.78/download"],
strip_prefix = "cc-1.0.78",
build_file = Label("@cxx.rs//third-party/bazel:BUILD.cc-1.0.78.bazel"),
urls = ["https://crates.io/api/v1/crates/cc/1.0.79/download"],
strip_prefix = "cc-1.0.79",
build_file = Label("@cxx.rs//third-party/bazel:BUILD.cc-1.0.79.bazel"),
)
maybe(