Skip to content

Commit

Permalink
Lockfile update
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 15, 2022
1 parent affcc4e commit 82420d5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
16 changes: 8 additions & 8 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-4.0.9/src/**/*.rs"]) + [
"vendor/clap-4.0.9/examples/demo.md",
"vendor/clap-4.0.9/examples/demo.rs",
srcs = glob(["vendor/clap-4.0.15/src/**/*.rs"]) + [
"vendor/clap-4.0.15/examples/demo.md",
"vendor/clap-4.0.15/examples/demo.rs",
],
edition = "2021",
features = [
Expand Down Expand Up @@ -77,8 +77,8 @@ rust_library(

rust_library(
name = "proc-macro2",
srcs = glob(["vendor/proc-macro2-1.0.46/src/**/*.rs"]),
build_script = "vendor/proc-macro2-1.0.46/build.rs",
srcs = glob(["vendor/proc-macro2-1.0.47/src/**/*.rs"]),
build_script = "vendor/proc-macro2-1.0.47/build.rs",
edition = "2018",
features = [
"proc-macro",
Expand Down Expand Up @@ -108,8 +108,8 @@ rust_library(

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.101/src/**/*.rs"]),
build_script = "vendor/syn-1.0.101/build.rs",
srcs = glob(["vendor/syn-1.0.102/src/**/*.rs"]),
build_script = "vendor/syn-1.0.102/build.rs",
edition = "2018",
features = [
"clone-impls",
Expand All @@ -135,7 +135,7 @@ rust_library(

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

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

rust_library(
name = "clap",
srcs = glob(["vendor/clap-4.0.9/src/**/*.rs"]) + ["vendor/clap-4.0.9/examples/demo.rs"],
srcs = glob(["vendor/clap-4.0.15/src/**/*.rs"]) + ["vendor/clap-4.0.15/examples/demo.rs"],
crate_features = [
"error-context",
"help",
"std",
"usage",
],
data = ["vendor/clap-4.0.9/examples/demo.md"],
data = ["vendor/clap-4.0.15/examples/demo.md"],
edition = "2021",
visibility = ["//visibility:public"],
deps = [
Expand Down Expand Up @@ -78,7 +78,7 @@ rust_library(

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

cargo_build_script(
name = "proc-macro2@build",
srcs = ["vendor/proc-macro2-1.0.46/build.rs"],
srcs = ["vendor/proc-macro2-1.0.47/build.rs"],
crate_features = [
"proc-macro",
"span-locations",
Expand Down Expand Up @@ -132,7 +132,7 @@ rust_library(

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

cargo_build_script(
name = "syn@build",
srcs = ["vendor/syn-1.0.101/build.rs"],
srcs = ["vendor/syn-1.0.102/build.rs"],
crate_features = [
"clone-impls",
"derive",
Expand All @@ -174,7 +174,7 @@ rust_library(

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

Expand Down
32 changes: 16 additions & 16 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 82420d5

Please sign in to comment.