Skip to content

Commit

Permalink
[autogen] Add autogen files by 'bazel run //third-party:vendor'
Browse files Browse the repository at this point in the history
  • Loading branch information
nak3 committed Feb 22, 2023
1 parent 76c0ed7 commit 6962287
Show file tree
Hide file tree
Showing 141 changed files with 7,072 additions and 621 deletions.
43 changes: 43 additions & 0 deletions third-party/bazel/BUILD.addr2line-0.17.0.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//third-party:vendor
###############################################################################

load("@rules_rust//rust:defs.bzl", "rust_library")

package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # Apache-2.0 OR MIT
# ])

rust_library(
name = "addr2line",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2015",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "0.17.0",
deps = [
"@vendor__gimli-0.26.2//:gimli",
],
)
40 changes: 40 additions & 0 deletions third-party/bazel/BUILD.adler-1.0.2.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//third-party:vendor
###############################################################################

load("@rules_rust//rust:defs.bzl", "rust_library")

package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # 0BSD OR MIT OR Apache-2.0
# ])

rust_library(
name = "adler",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2015",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "1.0.2",
)
185 changes: 185 additions & 0 deletions third-party/bazel/BUILD.ahash-0.7.6.bazel

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # Unlicense OR MIT
# "TODO", # Unlicense/MIT
# ])

rust_library(
Expand Down Expand Up @@ -40,7 +40,7 @@ rust_library(
"noclippy",
"norustfmt",
],
version = "0.7.20",
version = "0.7.19",
deps = [
"@vendor__memchr-2.5.0//:memchr",
],
Expand Down
43 changes: 43 additions & 0 deletions third-party/bazel/BUILD.android_system_properties-0.1.5.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//third-party:vendor
###############################################################################

load("@rules_rust//rust:defs.bzl", "rust_library")

package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # MIT/Apache-2.0
# ])

rust_library(
name = "android_system_properties",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2018",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "0.1.5",
deps = [
"@vendor__libc-0.2.137//:libc",
],
)
87 changes: 87 additions & 0 deletions third-party/bazel/BUILD.anyhow-1.0.66.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//third-party:vendor
###############################################################################

load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
load("@rules_rust//rust:defs.bzl", "rust_library")

package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # MIT OR Apache-2.0
# ])

rust_library(
name = "anyhow",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
edition = "2018",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "1.0.66",
deps = [
"@vendor__anyhow-1.0.66//:build_script_build",
],
)

cargo_build_script(
name = "anyhow_build_script",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"std",
],
crate_name = "build_script_build",
crate_root = "build.rs",
data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "1.0.66",
visibility = ["//visibility:private"],
)

alias(
name = "build_script_build",
actual = "anyhow_build_script",
tags = ["manual"],
)
6 changes: 3 additions & 3 deletions third-party/bazel/BUILD.aquamarine-0.1.12.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ rust_proc_macro(
deps = [
"@vendor__itertools-0.9.0//:itertools",
"@vendor__proc-macro-error-1.0.4//:proc_macro_error",
"@vendor__proc-macro2-1.0.51//:proc_macro2",
"@vendor__quote-1.0.23//:quote",
"@vendor__syn-1.0.107//:syn",
"@vendor__proc-macro2-1.0.47//:proc_macro2",
"@vendor__quote-1.0.21//:quote",
"@vendor__syn-1.0.103//:syn",
],
)
48 changes: 48 additions & 0 deletions third-party/bazel/BUILD.assert_cmd-2.0.5.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//third-party:vendor
###############################################################################

load("@rules_rust//rust:defs.bzl", "rust_library")

package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # MIT OR Apache-2.0
# ])

rust_library(
name = "assert_cmd",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2018",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "2.0.5",
deps = [
"@vendor__bstr-0.2.17//:bstr",
"@vendor__doc-comment-0.3.3//:doc_comment",
"@vendor__predicates-2.1.1//:predicates",
"@vendor__predicates-core-1.0.3//:predicates_core",
"@vendor__predicates-tree-1.0.5//:predicates_tree",
"@vendor__wait-timeout-0.2.0//:wait_timeout",
],
)
38 changes: 19 additions & 19 deletions third-party/bazel/BUILD.atty-0.2.14.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -39,70 +39,70 @@ rust_library(
version = "0.2.14",
deps = select({
"@rules_rust//rust/platform:aarch64-apple-darwin": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:aarch64-apple-ios": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:aarch64-linux-android": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
"@vendor__winapi-0.3.9//:winapi", # cfg(windows)
],
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:armv7-linux-androideabi": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:i686-apple-darwin": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:i686-linux-android": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
"@vendor__winapi-0.3.9//:winapi", # cfg(windows)
],
"@rules_rust//rust/platform:i686-unknown-freebsd": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:x86_64-apple-darwin": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:x86_64-apple-ios": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:x86_64-linux-android": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
"@vendor__winapi-0.3.9//:winapi", # cfg(windows)
],
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
"@vendor__libc-0.2.139//:libc", # cfg(unix)
"@vendor__libc-0.2.137//:libc", # cfg(unix)
],
"//conditions:default": [],
}),
Expand Down
Loading

0 comments on commit 6962287

Please sign in to comment.