1############################################################################### 2# @generated 3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To 4# regenerate this file, run the following: 5# 6# bazel run @//proto/protobuf/3rdparty:crates_vendor 7############################################################################### 8 9load("@rules_rust//cargo:defs.bzl", "cargo_build_script") 10load("@rules_rust//rust:defs.bzl", "rust_library") 11 12package(default_visibility = ["//visibility:public"]) 13 14rust_library( 15 name = "parking_lot", 16 srcs = glob( 17 include = ["**/*.rs"], 18 allow_empty = True, 19 ), 20 compile_data = glob( 21 include = ["**"], 22 allow_empty = True, 23 exclude = [ 24 "**/* *", 25 ".tmp_git_root/**/*", 26 "BUILD", 27 "BUILD.bazel", 28 "WORKSPACE", 29 "WORKSPACE.bazel", 30 ], 31 ), 32 crate_features = [ 33 "default", 34 ], 35 crate_root = "src/lib.rs", 36 edition = "2018", 37 rustc_flags = [ 38 "--cap-lints=allow", 39 ], 40 tags = [ 41 "cargo-bazel", 42 "crate-name=parking_lot", 43 "manual", 44 "noclippy", 45 "norustfmt", 46 ], 47 target_compatible_with = select({ 48 "@rules_rust//rust/platform:aarch64-apple-darwin": [], 49 "@rules_rust//rust/platform:aarch64-apple-ios": [], 50 "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], 51 "@rules_rust//rust/platform:aarch64-fuchsia": [], 52 "@rules_rust//rust/platform:aarch64-linux-android": [], 53 "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], 54 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], 55 "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], 56 "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], 57 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], 58 "@rules_rust//rust/platform:armv7-linux-androideabi": [], 59 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], 60 "@rules_rust//rust/platform:i686-apple-darwin": [], 61 "@rules_rust//rust/platform:i686-linux-android": [], 62 "@rules_rust//rust/platform:i686-pc-windows-msvc": [], 63 "@rules_rust//rust/platform:i686-unknown-freebsd": [], 64 "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], 65 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], 66 "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], 67 "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], 68 "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], 69 "@rules_rust//rust/platform:thumbv7em-none-eabi": [], 70 "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], 71 "@rules_rust//rust/platform:wasm32-unknown-unknown": [], 72 "@rules_rust//rust/platform:wasm32-wasi": [], 73 "@rules_rust//rust/platform:x86_64-apple-darwin": [], 74 "@rules_rust//rust/platform:x86_64-apple-ios": [], 75 "@rules_rust//rust/platform:x86_64-fuchsia": [], 76 "@rules_rust//rust/platform:x86_64-linux-android": [], 77 "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], 78 "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], 79 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], 80 "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], 81 "@rules_rust//rust/platform:x86_64-unknown-none": [], 82 "//conditions:default": ["@platforms//:incompatible"], 83 }), 84 version = "0.9.0", 85 deps = [ 86 "@rules_rust_proto__lock_api-0.3.4//:lock_api", 87 "@rules_rust_proto__parking_lot-0.9.0//:build_script_build", 88 "@rules_rust_proto__parking_lot_core-0.6.3//:parking_lot_core", 89 ], 90) 91 92cargo_build_script( 93 name = "_bs", 94 srcs = glob( 95 include = ["**/*.rs"], 96 allow_empty = True, 97 ), 98 crate_features = [ 99 "default", 100 ], 101 crate_name = "build_script_build", 102 crate_root = "build.rs", 103 data = glob( 104 include = ["**"], 105 allow_empty = True, 106 exclude = [ 107 "**/* *", 108 ".tmp_git_root/**/*", 109 "BUILD", 110 "BUILD.bazel", 111 "WORKSPACE", 112 "WORKSPACE.bazel", 113 ], 114 ), 115 edition = "2018", 116 pkg_name = "parking_lot", 117 rustc_flags = [ 118 "--cap-lints=allow", 119 ], 120 tags = [ 121 "cargo-bazel", 122 "crate-name=parking_lot", 123 "manual", 124 "noclippy", 125 "norustfmt", 126 ], 127 version = "0.9.0", 128 visibility = ["//visibility:private"], 129 deps = [ 130 "@rules_rust_proto__rustc_version-0.2.3//:rustc_version", 131 ], 132) 133 134alias( 135 name = "build_script_build", 136 actual = ":_bs", 137 tags = ["manual"], 138) 139