Skip to content

Commit

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

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.102/src/**/*.rs"]),
build_script = "vendor/syn-1.0.102/build.rs",
srcs = glob(["vendor/syn-1.0.103/src/**/*.rs"]),
build_script = "vendor/syn-1.0.103/build.rs",
edition = "2018",
features = [
"clone-impls",
Expand Down
8 changes: 4 additions & 4 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.15/src/**/*.rs"]) + ["vendor/clap-4.0.15/examples/demo.rs"],
srcs = glob(["vendor/clap-4.0.18/src/**/*.rs"]) + ["vendor/clap-4.0.18/examples/demo.rs"],
crate_features = [
"error-context",
"help",
"std",
"usage",
],
data = ["vendor/clap-4.0.15/examples/demo.md"],
data = ["vendor/clap-4.0.18/examples/demo.md"],
edition = "2021",
visibility = ["//visibility:public"],
deps = [
Expand Down Expand Up @@ -132,7 +132,7 @@ rust_library(

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.102/src/**/*.rs"]),
srcs = glob(["vendor/syn-1.0.103/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.102/build.rs"],
srcs = ["vendor/syn-1.0.103/build.rs"],
crate_features = [
"clone-impls",
"derive",
Expand Down
20 changes: 10 additions & 10 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 5e1511e

Please sign in to comment.