Skip to content

Commit

Permalink
Lockfile update
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 30, 2022
1 parent f1c6510 commit 15f8e67
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 61 deletions.
26 changes: 13 additions & 13 deletions third-party/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ rust_library(

rust_library(
name = "clap",
srcs = glob(["vendor/clap-3.2.16/src/**/*.rs"]) + [
"vendor/clap-3.2.16/examples/demo.md",
"vendor/clap-3.2.16/examples/demo.rs",
srcs = glob(["vendor/clap-3.2.19/src/**/*.rs"]) + [
"vendor/clap-3.2.19/examples/demo.md",
"vendor/clap-3.2.19/examples/demo.rs",
],
edition = "2021",
features = ["std"],
Expand Down Expand Up @@ -70,7 +70,7 @@ rust_library(

rust_library(
name = "once_cell",
srcs = glob(["vendor/once_cell-1.13.0/src/**/*.rs"]),
srcs = glob(["vendor/once_cell-1.13.1/src/**/*.rs"]),
edition = "2018",
features = [
"alloc",
Expand All @@ -81,7 +81,7 @@ rust_library(

rust_library(
name = "os_str_bytes",
srcs = glob(["vendor/os_str_bytes-6.2.0/src/**/*.rs"]),
srcs = glob(["vendor/os_str_bytes-6.3.0/src/**/*.rs"]),
edition = "2021",
features = [
"raw_os_str",
Expand All @@ -90,8 +90,8 @@ rust_library(

rust_library(
name = "proc-macro2",
srcs = glob(["vendor/proc-macro2-1.0.42/src/**/*.rs"]),
build_script = "vendor/proc-macro2-1.0.42/build.rs",
srcs = glob(["vendor/proc-macro2-1.0.43/src/**/*.rs"]),
build_script = "vendor/proc-macro2-1.0.43/build.rs",
edition = "2018",
features = [
"proc-macro",
Expand All @@ -103,8 +103,8 @@ rust_library(

rust_library(
name = "quote",
srcs = glob(["vendor/quote-1.0.20/src/**/*.rs"]),
build_script = "vendor/quote-1.0.20/build.rs",
srcs = glob(["vendor/quote-1.0.21/src/**/*.rs"]),
build_script = "vendor/quote-1.0.21/build.rs",
edition = "2018",
features = ["proc-macro"],
visibility = ["PUBLIC"],
Expand All @@ -113,16 +113,16 @@ rust_library(

rust_library(
name = "scratch",
srcs = glob(["vendor/scratch-1.0.1/src/**/*.rs"]),
srcs = glob(["vendor/scratch-1.0.2/src/**/*.rs"]),
edition = "2018",
env = {"OUT_DIR": ""},
visibility = ["PUBLIC"],
)

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.98/src/**/*.rs"]),
build_script = "vendor/syn-1.0.98/build.rs",
srcs = glob(["vendor/syn-1.0.99/src/**/*.rs"]),
build_script = "vendor/syn-1.0.99/build.rs",
edition = "2018",
features = [
"clone-impls",
Expand Down Expand Up @@ -155,7 +155,7 @@ rust_library(

rust_library(
name = "unicode-ident",
srcs = glob(["vendor/unicode-ident-1.0.2/src/**/*.rs"]),
srcs = glob(["vendor/unicode-ident-1.0.3/src/**/*.rs"]),
edition = "2018",
)

Expand Down
24 changes: 12 additions & 12 deletions third-party/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ rust_library(

rust_library(
name = "clap",
srcs = glob(["vendor/clap-3.2.16/src/**/*.rs"]) + ["vendor/clap-3.2.16/examples/demo.rs"],
srcs = glob(["vendor/clap-3.2.19/src/**/*.rs"]) + ["vendor/clap-3.2.19/examples/demo.rs"],
crate_features = ["std"],
data = ["vendor/clap-3.2.16/examples/demo.md"],
data = ["vendor/clap-3.2.19/examples/demo.md"],
edition = "2021",
visibility = ["//visibility:public"],
deps = [
Expand Down Expand Up @@ -71,7 +71,7 @@ rust_library(

rust_library(
name = "once_cell",
srcs = glob(["vendor/once_cell-1.13.0/src/**/*.rs"]),
srcs = glob(["vendor/once_cell-1.13.1/src/**/*.rs"]),
crate_features = [
"alloc",
"std",
Expand All @@ -82,7 +82,7 @@ rust_library(

rust_library(
name = "os_str_bytes",
srcs = glob(["vendor/os_str_bytes-6.2.0/src/**/*.rs"]),
srcs = glob(["vendor/os_str_bytes-6.3.0/src/**/*.rs"]),
crate_features = [
"raw_os_str",
],
Expand All @@ -91,7 +91,7 @@ rust_library(

rust_library(
name = "proc-macro2",
srcs = glob(["vendor/proc-macro2-1.0.42/src/**/*.rs"]),
srcs = glob(["vendor/proc-macro2-1.0.43/src/**/*.rs"]),
crate_features = [
"proc-macro",
"span-locations",
Expand All @@ -106,7 +106,7 @@ rust_library(

cargo_build_script(
name = "proc-macro2@build",
srcs = ["vendor/proc-macro2-1.0.42/build.rs"],
srcs = ["vendor/proc-macro2-1.0.43/build.rs"],
crate_features = [
"proc-macro",
"span-locations",
Expand All @@ -117,7 +117,7 @@ cargo_build_script(

rust_library(
name = "quote",
srcs = glob(["vendor/quote-1.0.20/src/**/*.rs"]),
srcs = glob(["vendor/quote-1.0.21/src/**/*.rs"]),
crate_features = ["proc-macro"],
edition = "2018",
visibility = ["//visibility:public"],
Expand All @@ -129,23 +129,23 @@ rust_library(

cargo_build_script(
name = "quote@build",
srcs = ["vendor/quote-1.0.20/build.rs"],
srcs = ["vendor/quote-1.0.21/build.rs"],
crate_features = ["proc-macro"],
crate_name = "build",
edition = "2018",
)

rust_library(
name = "scratch",
srcs = glob(["vendor/scratch-1.0.1/src/**/*.rs"]),
srcs = glob(["vendor/scratch-1.0.2/src/**/*.rs"]),
edition = "2018",
rustc_env = {"OUT_DIR": ""},
visibility = ["//visibility:public"],
)

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.98/src/**/*.rs"]),
srcs = glob(["vendor/syn-1.0.99/src/**/*.rs"]),
crate_features = [
"clone-impls",
"derive",
Expand All @@ -166,7 +166,7 @@ rust_library(

cargo_build_script(
name = "syn@build",
srcs = ["vendor/syn-1.0.98/build.rs"],
srcs = ["vendor/syn-1.0.99/build.rs"],
crate_features = [
"clone-impls",
"derive",
Expand Down Expand Up @@ -194,7 +194,7 @@ rust_library(

rust_library(
name = "unicode-ident",
srcs = glob(["vendor/unicode-ident-1.0.2/src/**/*.rs"]),
srcs = glob(["vendor/unicode-ident-1.0.3/src/**/*.rs"]),
edition = "2018",
)

Expand Down
72 changes: 36 additions & 36 deletions third-party/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 15f8e67

Please sign in to comment.