2020-11-01 05:26:58 +01:00
|
|
|
"""
|
|
|
|
@generated
|
|
|
|
cargo-raze crate build file.
|
|
|
|
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
|
|
"""
|
|
|
|
|
2021-03-27 09:39:02 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load(
|
2021-03-27 09:39:02 +01:00
|
|
|
"@rules_rust//rust:rust.bzl",
|
2020-11-01 05:26:58 +01:00
|
|
|
"rust_binary",
|
|
|
|
"rust_library",
|
|
|
|
"rust_test",
|
|
|
|
)
|
|
|
|
|
|
|
|
package(default_visibility = [
|
|
|
|
# Public for visibility by "@raze__crate__version//" targets.
|
|
|
|
#
|
|
|
|
# Prefer access through "//cargo", which limits external
|
|
|
|
# visibility to explicit Cargo.toml dependencies.
|
|
|
|
"//visibility:public",
|
|
|
|
])
|
|
|
|
|
|
|
|
licenses([
|
|
|
|
"notice", # Apache-2.0 from expression "Apache-2.0"
|
|
|
|
])
|
|
|
|
|
2020-11-24 07:57:37 +01:00
|
|
|
# Generated Targets
|
2021-03-27 09:39:02 +01:00
|
|
|
# buildifier: disable=out-of-order-load
|
2020-11-24 07:57:37 +01:00
|
|
|
# buildifier: disable=load-on-top
|
2020-11-01 05:26:58 +01:00
|
|
|
load(
|
2021-03-27 09:39:02 +01:00
|
|
|
"@rules_rust//cargo:cargo_build_script.bzl",
|
2020-11-01 05:26:58 +01:00
|
|
|
"cargo_build_script",
|
|
|
|
)
|
|
|
|
|
|
|
|
cargo_build_script(
|
|
|
|
name = "pyo3_build_script",
|
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
build_script_env = {
|
|
|
|
},
|
|
|
|
crate_features = [
|
|
|
|
"abi3",
|
2021-02-03 11:29:48 +01:00
|
|
|
"auto-initialize",
|
2020-11-10 00:47:24 +01:00
|
|
|
"ctor",
|
|
|
|
"default",
|
|
|
|
"extension-module",
|
|
|
|
"indoc",
|
|
|
|
"inventory",
|
|
|
|
"macros",
|
|
|
|
"paste",
|
2020-12-23 01:08:38 +01:00
|
|
|
"pyo3-macros",
|
2020-11-10 00:47:24 +01:00
|
|
|
"unindent",
|
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
crate_root = "build.rs",
|
2020-11-10 00:47:24 +01:00
|
|
|
data = glob(["**"]),
|
2020-11-01 05:26:58 +01:00
|
|
|
edition = "2018",
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
|
|
|
"manual",
|
|
|
|
],
|
2021-03-07 10:04:34 +01:00
|
|
|
version = "0.13.2",
|
2020-11-01 05:26:58 +01:00
|
|
|
visibility = ["//visibility:private"],
|
2020-11-10 00:47:24 +01:00
|
|
|
deps = [
|
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
)
|
|
|
|
|
2020-12-01 05:49:23 +01:00
|
|
|
# Unsupported target "bench_call" with type "bench" omitted
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "bench_dict" with type "bench" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "bench_list" with type "bench" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "bench_pyobject" with type "bench" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-10-28 00:57:14 +01:00
|
|
|
# Unsupported target "bench_set" with type "bench" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "bench_tuple" with type "bench" omitted
|
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "pyo3",
|
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_features = [
|
|
|
|
"abi3",
|
2021-02-03 11:29:48 +01:00
|
|
|
"auto-initialize",
|
2020-11-10 00:47:24 +01:00
|
|
|
"ctor",
|
|
|
|
"default",
|
|
|
|
"extension-module",
|
|
|
|
"indoc",
|
|
|
|
"inventory",
|
|
|
|
"macros",
|
|
|
|
"paste",
|
2020-12-23 01:08:38 +01:00
|
|
|
"pyo3-macros",
|
2020-11-10 00:47:24 +01:00
|
|
|
"unindent",
|
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
crate_root = "src/lib.rs",
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_type = "lib",
|
2020-12-15 11:28:10 +01:00
|
|
|
data = [],
|
2020-12-01 07:07:46 +01:00
|
|
|
compile_data = glob(["**/*.md"]),
|
2020-11-01 05:26:58 +01:00
|
|
|
edition = "2018",
|
|
|
|
proc_macro_deps = [
|
2021-03-27 05:47:16 +01:00
|
|
|
"@raze__ctor__0_1_20//:ctor",
|
2021-03-07 10:04:34 +01:00
|
|
|
"@raze__pyo3_macros__0_13_2//:pyo3_macros",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
|
|
|
"manual",
|
|
|
|
],
|
2021-03-07 10:04:34 +01:00
|
|
|
version = "0.13.2",
|
2020-11-10 00:47:24 +01:00
|
|
|
# buildifier: leave-alone
|
|
|
|
deps = [
|
|
|
|
":pyo3_build_script",
|
2020-12-01 05:49:23 +01:00
|
|
|
"@raze__cfg_if__1_0_0//:cfg_if",
|
2021-03-07 10:04:34 +01:00
|
|
|
"@raze__indoc__0_3_6//:indoc",
|
2020-12-15 08:10:25 +01:00
|
|
|
"@raze__inventory__0_1_10//:inventory",
|
2021-03-27 05:47:16 +01:00
|
|
|
"@raze__libc__0_2_91//:libc",
|
2020-11-24 07:57:37 +01:00
|
|
|
"@raze__parking_lot__0_11_1//:parking_lot",
|
2021-03-07 10:04:34 +01:00
|
|
|
"@raze__paste__0_1_18//:paste",
|
2020-11-10 00:47:24 +01:00
|
|
|
"@raze__unindent__0_1_7//:unindent",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
)
|
2020-11-10 00:47:24 +01:00
|
|
|
|
|
|
|
# Unsupported target "common" with type "test" omitted
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_arithmetics" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_buffer_protocol" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_bytes" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_class_attributes" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_class_basics" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_class_conversion" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_class_new" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_compile_error" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_datetime" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_dict_iter" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_dunder" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_exceptions" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-10-28 00:57:14 +01:00
|
|
|
# Unsupported target "test_frompyobject" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_gc" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_getter_setter" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_inheritance" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_mapping" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_methods" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_module" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_pyfunction" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_pyself" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_sequence" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2021-03-07 10:04:34 +01:00
|
|
|
# Unsupported target "test_serde" with type "test" omitted
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_string" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_text_signature" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-10-28 00:57:14 +01:00
|
|
|
# Unsupported target "test_unsendable_dict" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_variable_arguments" with type "test" omitted
|
2020-11-10 00:47:24 +01:00
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Unsupported target "test_various" with type "test" omitted
|