Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1 | """ |
| 2 | @generated |
| 3 | cargo-raze crate build file. |
| 4 | |
| 5 | DO NOT EDIT! Replaced on runs of cargo-raze |
| 6 | """ |
| 7 | |
| 8 | # buildifier: disable=load |
| 9 | load("@bazel_skylib//lib:selects.bzl", "selects") |
| 10 | |
| 11 | # buildifier: disable=load |
| 12 | load( |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 13 | "@rules_rust//rust:defs.bzl", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 14 | "rust_binary", |
| 15 | "rust_library", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 16 | "rust_proc_macro", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 17 | "rust_test", |
| 18 | ) |
| 19 | |
| 20 | package(default_visibility = [ |
| 21 | # Public for visibility by "@raze__crate__version//" targets. |
| 22 | # |
| 23 | # Prefer access through "//third_party/rust/cargo", which limits external |
| 24 | # visibility to explicit Cargo.toml dependencies. |
| 25 | "//visibility:public", |
| 26 | ]) |
| 27 | |
| 28 | licenses([ |
| 29 | "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
| 33 | |
| 34 | # Unsupported target "enum-default" with type "example" omitted |
| 35 | |
| 36 | # Unsupported target "enum-default-expanded" with type "example" omitted |
| 37 | |
| 38 | # Unsupported target "not_unpin" with type "example" omitted |
| 39 | |
| 40 | # Unsupported target "not_unpin-expanded" with type "example" omitted |
| 41 | |
| 42 | # Unsupported target "pinned_drop" with type "example" omitted |
| 43 | |
| 44 | # Unsupported target "pinned_drop-expanded" with type "example" omitted |
| 45 | |
| 46 | # Unsupported target "project_replace" with type "example" omitted |
| 47 | |
| 48 | # Unsupported target "project_replace-expanded" with type "example" omitted |
| 49 | |
| 50 | # Unsupported target "struct-default" with type "example" omitted |
| 51 | |
| 52 | # Unsupported target "struct-default-expanded" with type "example" omitted |
| 53 | |
| 54 | # Unsupported target "unsafe_unpin" with type "example" omitted |
| 55 | |
| 56 | # Unsupported target "unsafe_unpin-expanded" with type "example" omitted |
| 57 | |
| 58 | rust_library( |
| 59 | name = "pin_project", |
| 60 | srcs = glob(["**/*.rs"]), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 61 | crate_root = "src/lib.rs", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 62 | data = [], |
| 63 | edition = "2018", |
| 64 | proc_macro_deps = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 65 | "@raze__pin_project_internal__1_0_12//:pin_project_internal", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 66 | ], |
| 67 | rustc_flags = [ |
| 68 | "--cap-lints=allow", |
| 69 | ], |
| 70 | tags = [ |
| 71 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 72 | "crate-name=pin-project", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 73 | "manual", |
| 74 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 75 | version = "1.0.12", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 76 | # buildifier: leave-alone |
| 77 | deps = [ |
| 78 | ], |
| 79 | ) |
| 80 | |
| 81 | # Unsupported target "cfg" with type "test" omitted |
| 82 | |
| 83 | # Unsupported target "compiletest" with type "test" omitted |
| 84 | |
| 85 | # Unsupported target "drop_order" with type "test" omitted |
| 86 | |
| 87 | # Unsupported target "expandtest" with type "test" omitted |
| 88 | |
| 89 | # Unsupported target "lint" with type "test" omitted |
| 90 | |
| 91 | # Unsupported target "pin_project" with type "test" omitted |
| 92 | |
| 93 | # Unsupported target "pinned_drop" with type "test" omitted |
| 94 | |
| 95 | # Unsupported target "proper_unpin" with type "test" omitted |
| 96 | |
| 97 | # Unsupported target "repr_packed" with type "test" omitted |
| 98 | |
| 99 | # Unsupported target "unsafe_unpin" with type "test" omitted |