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" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
| 33 | |
| 34 | # Unsupported target "autoreload" with type "example" omitted |
| 35 | |
| 36 | # Unsupported target "body" with type "example" omitted |
| 37 | |
| 38 | # Unsupported target "compression" with type "example" omitted |
| 39 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 40 | # Unsupported target "custom_methods" with type "example" omitted |
| 41 | |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 42 | # Unsupported target "dir" with type "example" omitted |
| 43 | |
| 44 | # Unsupported target "dyn_reply" with type "example" omitted |
| 45 | |
| 46 | # Unsupported target "file" with type "example" omitted |
| 47 | |
| 48 | # Unsupported target "futures" with type "example" omitted |
| 49 | |
| 50 | # Unsupported target "handlebars_template" with type "example" omitted |
| 51 | |
| 52 | # Unsupported target "headers" with type "example" omitted |
| 53 | |
| 54 | # Unsupported target "hello" with type "example" omitted |
| 55 | |
| 56 | # Unsupported target "query_string" with type "example" omitted |
| 57 | |
| 58 | # Unsupported target "rejections" with type "example" omitted |
| 59 | |
| 60 | # Unsupported target "returning" with type "example" omitted |
| 61 | |
| 62 | # Unsupported target "routing" with type "example" omitted |
| 63 | |
| 64 | # Unsupported target "sse" with type "example" omitted |
| 65 | |
| 66 | # Unsupported target "sse_chat" with type "example" omitted |
| 67 | |
| 68 | # Unsupported target "tls" with type "example" omitted |
| 69 | |
| 70 | # Unsupported target "todos" with type "example" omitted |
| 71 | |
| 72 | # Unsupported target "tracing" with type "example" omitted |
| 73 | |
| 74 | # Unsupported target "unix_socket" with type "example" omitted |
| 75 | |
| 76 | # Unsupported target "websockets" with type "example" omitted |
| 77 | |
| 78 | # Unsupported target "websockets_chat" with type "example" omitted |
| 79 | |
| 80 | # Unsupported target "wrapping" with type "example" omitted |
| 81 | |
| 82 | rust_library( |
| 83 | name = "warp", |
| 84 | srcs = glob(["**/*.rs"]), |
| 85 | crate_features = [ |
| 86 | "tokio-tungstenite", |
| 87 | "websocket", |
| 88 | ], |
| 89 | crate_root = "src/lib.rs", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 90 | data = [], |
| 91 | edition = "2018", |
| 92 | rustc_flags = [ |
| 93 | "--cap-lints=allow", |
| 94 | ], |
| 95 | tags = [ |
| 96 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 97 | "crate-name=warp", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 98 | "manual", |
| 99 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 100 | version = "0.3.3", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 101 | # buildifier: leave-alone |
| 102 | deps = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 103 | "@raze__bytes__1_3_0//:bytes", |
| 104 | "@raze__futures_channel__0_3_25//:futures_channel", |
| 105 | "@raze__futures_util__0_3_25//:futures_util", |
| 106 | "@raze__headers__0_3_8//:headers", |
| 107 | "@raze__http__0_2_8//:http", |
| 108 | "@raze__hyper__0_14_23//:hyper", |
| 109 | "@raze__log__0_4_17//:log", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 110 | "@raze__mime__0_3_16//:mime", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 111 | "@raze__mime_guess__2_0_4//:mime_guess", |
| 112 | "@raze__percent_encoding__2_2_0//:percent_encoding", |
| 113 | "@raze__pin_project__1_0_12//:pin_project", |
| 114 | "@raze__rustls_pemfile__0_2_1//:rustls_pemfile", |
| 115 | "@raze__scoped_tls__1_0_1//:scoped_tls", |
| 116 | "@raze__serde__1_0_152//:serde", |
| 117 | "@raze__serde_json__1_0_91//:serde_json", |
| 118 | "@raze__serde_urlencoded__0_7_1//:serde_urlencoded", |
| 119 | "@raze__tokio__1_24_1//:tokio", |
| 120 | "@raze__tokio_stream__0_1_11//:tokio_stream", |
| 121 | "@raze__tokio_tungstenite__0_17_2//:tokio_tungstenite", |
| 122 | "@raze__tokio_util__0_7_4//:tokio_util", |
| 123 | "@raze__tower_service__0_3_2//:tower_service", |
| 124 | "@raze__tracing__0_1_37//:tracing", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 125 | ], |
| 126 | ) |
| 127 | |
| 128 | # Unsupported target "addr" with type "test" omitted |
| 129 | |
| 130 | # Unsupported target "body" with type "test" omitted |
| 131 | |
| 132 | # Unsupported target "cookie" with type "test" omitted |
| 133 | |
| 134 | # Unsupported target "cors" with type "test" omitted |
| 135 | |
| 136 | # Unsupported target "ext" with type "test" omitted |
| 137 | |
| 138 | # Unsupported target "filter" with type "test" omitted |
| 139 | |
| 140 | # Unsupported target "fs" with type "test" omitted |
| 141 | |
| 142 | # Unsupported target "header" with type "test" omitted |
| 143 | |
| 144 | # Unsupported target "host" with type "test" omitted |
| 145 | |
| 146 | # Unsupported target "method" with type "test" omitted |
| 147 | |
| 148 | # Unsupported target "multipart" with type "test" omitted |
| 149 | |
| 150 | # Unsupported target "path" with type "test" omitted |
| 151 | |
| 152 | # Unsupported target "query" with type "test" omitted |
| 153 | |
| 154 | # Unsupported target "redirect" with type "test" omitted |
| 155 | |
| 156 | # Unsupported target "reply_with" with type "test" omitted |
| 157 | |
| 158 | # Unsupported target "tracing" with type "test" omitted |
| 159 | |
| 160 | # Unsupported target "ws" with type "test" omitted |