Skip to content

Commit

Permalink
Lockfile update
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 19, 2022
1 parent f2aecb0 commit 6e25fbc
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 29 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-3.2.20/src/**/*.rs"]) + [
"vendor/clap-3.2.20/examples/demo.md",
"vendor/clap-3.2.20/examples/demo.rs",
srcs = glob(["vendor/clap-3.2.22/src/**/*.rs"]) + [
"vendor/clap-3.2.22/examples/demo.md",
"vendor/clap-3.2.22/examples/demo.rs",
],
edition = "2021",
features = ["std"],
Expand Down Expand Up @@ -121,8 +121,8 @@ rust_library(

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.99/src/**/*.rs"]),
build_script = "vendor/syn-1.0.99/build.rs",
srcs = glob(["vendor/syn-1.0.100/src/**/*.rs"]),
build_script = "vendor/syn-1.0.100/build.rs",
edition = "2018",
features = [
"clone-impls",
Expand All @@ -148,19 +148,19 @@ rust_library(

rust_library(
name = "textwrap",
srcs = glob(["vendor/textwrap-0.15.0/src/**/*.rs"]),
srcs = glob(["vendor/textwrap-0.15.1/src/**/*.rs"]),
edition = "2018",
deps = [":unicode-width"],
)

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

rust_library(
name = "unicode-width",
srcs = glob(["vendor/unicode-width-0.1.9/src/**/*.rs"]),
srcs = glob(["vendor/unicode-width-0.1.10/src/**/*.rs"]),
edition = "2018",
)
14 changes: 7 additions & 7 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.20/src/**/*.rs"]) + ["vendor/clap-3.2.20/examples/demo.rs"],
srcs = glob(["vendor/clap-3.2.22/src/**/*.rs"]) + ["vendor/clap-3.2.22/examples/demo.rs"],
crate_features = ["std"],
data = ["vendor/clap-3.2.20/examples/demo.md"],
data = ["vendor/clap-3.2.22/examples/demo.md"],
edition = "2021",
visibility = ["//visibility:public"],
deps = [
Expand Down Expand Up @@ -145,7 +145,7 @@ rust_library(

rust_library(
name = "syn",
srcs = glob(["vendor/syn-1.0.99/src/**/*.rs"]),
srcs = glob(["vendor/syn-1.0.100/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.99/build.rs"],
srcs = ["vendor/syn-1.0.100/build.rs"],
crate_features = [
"clone-impls",
"derive",
Expand All @@ -187,19 +187,19 @@ rust_library(

rust_library(
name = "textwrap",
srcs = glob(["vendor/textwrap-0.15.0/src/**/*.rs"]),
srcs = glob(["vendor/textwrap-0.15.1/src/**/*.rs"]),
edition = "2018",
deps = [":unicode-width"],
)

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

rust_library(
name = "unicode-width",
srcs = glob(["vendor/unicode-width-0.1.9/src/**/*.rs"]),
srcs = glob(["vendor/unicode-width-0.1.10/src/**/*.rs"]),
edition = "2018",
)
28 changes: 14 additions & 14 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 6e25fbc

Please sign in to comment.