blob: 6bd3f819b162824fad95f383573b1998472d1470 [file] [log] [blame] [edit]
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# fx update-rustc-third-party
###############################################################################
load("@rules_rust//rust:defs.bzl", "rust_library")
load("@rules_license//rules:license.bzl", "license")
load("@rules_license//rules:package_info.bzl", "package_info")
package(
default_package_metadata = [
":license",
":package_info",
],
default_visibility = ["//visibility:public"],
)
package_info(
name = "package_info",
package_name = "proptest",
package_url = "https://github.com/proptest-rs/proptest",
package_version = "1.7.0",
)
license(
name = "license",
license_kinds = [
"@rules_license//licenses/spdx:Apache-2.0",
"@rules_license//licenses/spdx:MIT",
],
license_text = "LICENSE-APACHE",
)
rust_library(
name = "proptest",
srcs = glob(
include = ["**/*.rs"],
allow_empty = False,
),
compile_data = glob(
include = ["**"],
allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_features = [
"bit-set",
"default",
"fork",
"lazy_static",
"regex-syntax",
"rusty-fork",
"std",
"tempfile",
"timeout",
],
crate_root = "src/lib.rs",
edition = "2021",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-bazel",
"crate-name=proptest",
"manual",
"noclippy",
"norustfmt",
],
target_compatible_with = select({
"@rules_rust//rust/platform:aarch64-apple-darwin": [],
"@rules_rust//rust/platform:aarch64-unknown-fuchsia": [],
"@rules_rust//rust/platform:x86_64-apple-darwin": [],
"@rules_rust//rust/platform:x86_64-unknown-fuchsia": [],
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
"//conditions:default": ["@platforms//:incompatible"],
}),
version = "1.7.0",
deps = [
"//third_party/rust_crates/vendor/bit-set-0.8.0:bit_set",
"//third_party/rust_crates/vendor/bit-vec-0.8.0:bit_vec",
"//third_party/rust_crates/vendor/bitflags-2.9.1:bitflags",
"//third_party/rust_crates/vendor/lazy_static-1.5.0:lazy_static",
"//third_party/rust_crates/vendor/num-traits-0.2.19:num_traits",
"//third_party/rust_crates/vendor/rand-0.9.1:rand",
"//third_party/rust_crates/vendor/rand_chacha-0.9.0:rand_chacha",
"//third_party/rust_crates/vendor/rand_xorshift-0.4.0:rand_xorshift",
"//third_party/rust_crates/vendor/regex-syntax-0.8.5:regex_syntax",
"//third_party/rust_crates/vendor/rusty-fork-0.3.0:rusty_fork",
"//third_party/rust_crates/vendor/tempfile-3.2.0:tempfile",
"//third_party/rust_crates/vendor/unarray-0.1.4:unarray",
],
)