""" @generated cargo-raze crate build file. DO NOT EDIT! Replaced on runs of cargo-raze """ # buildifier: disable=load load( "@io_bazel_rules_rust//rust:rust.bzl", "rust_binary", "rust_library", "rust_test", ) # buildifier: disable=load load("@bazel_skylib//lib:selects.bzl", "selects") package(default_visibility = [ # Public for visibility by "@raze__crate__version//" targets. # # Prefer access through "//third_party/cargo", which limits external # visibility to explicit Cargo.toml dependencies. "//visibility:public", ]) licenses([ "notice", # Apache-2.0 from expression "Apache-2.0" ]) # Generated Targets # buildifier: disable=load-on-top load( "@io_bazel_rules_rust//cargo:cargo_build_script.bzl", "cargo_build_script", ) cargo_build_script( name = "cgmath_build_script", srcs = glob(["**/*.rs"]), build_script_env = { }, crate_features = [ ], crate_root = "build.rs", data = glob(["**"]), edition = "2015", rustc_flags = [ "--cap-lints=allow", ], tags = [ "cargo-raze", "manual", ], version = "0.18.0", visibility = ["//visibility:private"], deps = [ ], ) # Unsupported target "construction" with type "bench" omitted # Unsupported target "mat" with type "bench" omitted # Unsupported target "quat" with type "bench" omitted # Unsupported target "vec" with type "bench" omitted rust_library( name = "cgmath", srcs = glob(["**/*.rs"]), crate_features = [ ], crate_root = "src/lib.rs", crate_type = "lib", data = [], edition = "2015", rustc_flags = [ "--cap-lints=allow", ], tags = [ "cargo-raze", "manual", ], version = "0.18.0", # buildifier: leave-alone deps = [ ":cgmath_build_script", "//third_party/cargo/vendor/approx-0.4.0:approx", "//third_party/cargo/vendor/num-traits-0.2.14:num_traits", ], ) # Unsupported target "angle" with type "test" omitted # Unsupported target "matrix" with type "test" omitted # Unsupported target "point" with type "test" omitted # Unsupported target "projection" with type "test" omitted # Unsupported target "quaternion" with type "test" omitted # Unsupported target "rotation" with type "test" omitted # Unsupported target "swizzle" with type "test" omitted # Unsupported target "transform" with type "test" omitted # Unsupported target "vector" with type "test" omitted # Unsupported target "vector4f32" with type "test" omitted