Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [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( |
| 13 | "@rules_rust//rust:defs.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_proc_macro", |
| 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", # MIT from expression "MIT" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
| 33 | |
| 34 | # Unsupported target "baseline" with type "bench" omitted |
| 35 | |
| 36 | # Unsupported target "dispatch_get_clone" with type "bench" omitted |
| 37 | |
| 38 | # Unsupported target "dispatch_get_ref" with type "bench" omitted |
| 39 | |
| 40 | # Unsupported target "empty_span" with type "bench" omitted |
| 41 | |
| 42 | # Unsupported target "enter_span" with type "bench" omitted |
| 43 | |
| 44 | # Unsupported target "event" with type "bench" omitted |
| 45 | |
| 46 | # Unsupported target "shared" with type "bench" omitted |
| 47 | |
| 48 | # Unsupported target "span_fields" with type "bench" omitted |
| 49 | |
| 50 | # Unsupported target "span_no_fields" with type "bench" omitted |
| 51 | |
| 52 | # Unsupported target "span_repeated" with type "bench" omitted |
| 53 | |
| 54 | rust_library( |
| 55 | name = "tracing", |
| 56 | srcs = glob(["**/*.rs"]), |
| 57 | crate_features = [ |
| 58 | "log", |
| 59 | "std", |
| 60 | ], |
| 61 | crate_root = "src/lib.rs", |
| 62 | data = [], |
| 63 | edition = "2018", |
| 64 | rustc_flags = [ |
| 65 | "--cap-lints=allow", |
| 66 | ], |
| 67 | tags = [ |
| 68 | "cargo-raze", |
| 69 | "crate-name=tracing", |
| 70 | "manual", |
| 71 | ], |
| 72 | version = "0.1.37", |
| 73 | # buildifier: leave-alone |
| 74 | deps = [ |
| 75 | "@raze__cfg_if__1_0_0//:cfg_if", |
| 76 | "@raze__log__0_4_17//:log", |
| 77 | "@raze__pin_project_lite__0_2_9//:pin_project_lite", |
| 78 | "@raze__tracing_core__0_1_30//:tracing_core", |
| 79 | ], |
| 80 | ) |
| 81 | |
| 82 | # Unsupported target "enabled" with type "test" omitted |
| 83 | |
| 84 | # Unsupported target "event" with type "test" omitted |
| 85 | |
| 86 | # Unsupported target "filter_caching_is_lexically_scoped" with type "test" omitted |
| 87 | |
| 88 | # Unsupported target "filters_are_not_reevaluated_for_the_same_span" with type "test" omitted |
| 89 | |
| 90 | # Unsupported target "filters_are_reevaluated_for_different_call_sites" with type "test" omitted |
| 91 | |
| 92 | # Unsupported target "filters_dont_leak" with type "test" omitted |
| 93 | |
| 94 | # Unsupported target "future_send" with type "test" omitted |
| 95 | |
| 96 | # Unsupported target "macro_imports" with type "test" omitted |
| 97 | |
| 98 | # Unsupported target "macros" with type "test" omitted |
| 99 | |
| 100 | # Unsupported target "macros_incompatible_concat" with type "test" omitted |
| 101 | |
| 102 | # Unsupported target "macros_redefined_core" with type "test" omitted |
| 103 | |
| 104 | # Unsupported target "max_level_hint" with type "test" omitted |
| 105 | |
| 106 | # Unsupported target "multiple_max_level_hints" with type "test" omitted |
| 107 | |
| 108 | # Unsupported target "no_subscriber" with type "test" omitted |
| 109 | |
| 110 | # Unsupported target "register_callsite_deadlock" with type "test" omitted |
| 111 | |
| 112 | # Unsupported target "scoped_clobbers_default" with type "test" omitted |
| 113 | |
| 114 | # Unsupported target "span" with type "test" omitted |
| 115 | |
| 116 | # Unsupported target "subscriber" with type "test" omitted |