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", # MIT from expression "MIT OR Apache-2.0" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 33 | |
| 34 | # Unsupported target "file" with type "bench" omitted |
| 35 | |
| 36 | # Unsupported target "rust" with type "bench" omitted |
| 37 | |
| 38 | rust_library( |
| 39 | name = "syn", |
| 40 | srcs = glob(["**/*.rs"]), |
| 41 | crate_features = [ |
| 42 | "clone-impls", |
| 43 | "default", |
| 44 | "derive", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 45 | "full", |
| 46 | "parsing", |
| 47 | "printing", |
| 48 | "proc-macro", |
| 49 | "quote", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 50 | "visit", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 51 | "visit-mut", |
| 52 | ], |
| 53 | crate_root = "src/lib.rs", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 54 | data = [], |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 55 | edition = "2021", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 56 | rustc_flags = [ |
| 57 | "--cap-lints=allow", |
| 58 | ], |
| 59 | tags = [ |
| 60 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 61 | "crate-name=syn", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 62 | "manual", |
| 63 | ], |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 64 | version = "2.0.37", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 65 | # buildifier: leave-alone |
| 66 | deps = [ |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 67 | "@raze__proc_macro2__1_0_67//:proc_macro2", |
| 68 | "@raze__quote__1_0_33//:quote", |
| 69 | "@raze__unicode_ident__1_0_12//:unicode_ident", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 70 | ], |
| 71 | ) |
| 72 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 73 | # Unsupported target "regression" with type "test" omitted |
| 74 | |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 75 | # Unsupported target "test_asyncness" with type "test" omitted |
| 76 | |
| 77 | # Unsupported target "test_attribute" with type "test" omitted |
| 78 | |
| 79 | # Unsupported target "test_derive_input" with type "test" omitted |
| 80 | |
| 81 | # Unsupported target "test_expr" with type "test" omitted |
| 82 | |
| 83 | # Unsupported target "test_generics" with type "test" omitted |
| 84 | |
| 85 | # Unsupported target "test_grouping" with type "test" omitted |
| 86 | |
| 87 | # Unsupported target "test_ident" with type "test" omitted |
| 88 | |
| 89 | # Unsupported target "test_item" with type "test" omitted |
| 90 | |
| 91 | # Unsupported target "test_iterators" with type "test" omitted |
| 92 | |
| 93 | # Unsupported target "test_lit" with type "test" omitted |
| 94 | |
| 95 | # Unsupported target "test_meta" with type "test" omitted |
| 96 | |
| 97 | # Unsupported target "test_parse_buffer" with type "test" omitted |
| 98 | |
| 99 | # Unsupported target "test_parse_stream" with type "test" omitted |
| 100 | |
| 101 | # Unsupported target "test_pat" with type "test" omitted |
| 102 | |
| 103 | # Unsupported target "test_path" with type "test" omitted |
| 104 | |
| 105 | # Unsupported target "test_precedence" with type "test" omitted |
| 106 | |
| 107 | # Unsupported target "test_receiver" with type "test" omitted |
| 108 | |
| 109 | # Unsupported target "test_round_trip" with type "test" omitted |
| 110 | |
| 111 | # Unsupported target "test_shebang" with type "test" omitted |
| 112 | |
| 113 | # Unsupported target "test_should_parse" with type "test" omitted |
| 114 | |
| 115 | # Unsupported target "test_size" with type "test" omitted |
| 116 | |
| 117 | # Unsupported target "test_stmt" with type "test" omitted |
| 118 | |
| 119 | # Unsupported target "test_token_trees" with type "test" omitted |
| 120 | |
| 121 | # Unsupported target "test_ty" with type "test" omitted |
| 122 | |
| 123 | # Unsupported target "test_visibility" with type "test" omitted |
| 124 | |
| 125 | # Unsupported target "zzz_stable" with type "test" omitted |