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 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 56 | # Unsupported target "multipart" with type "example" omitted |
| 57 | |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 58 | # Unsupported target "query_string" with type "example" omitted |
| 59 | |
| 60 | # Unsupported target "rejections" with type "example" omitted |
| 61 | |
| 62 | # Unsupported target "returning" with type "example" omitted |
| 63 | |
| 64 | # Unsupported target "routing" with type "example" omitted |
| 65 | |
| 66 | # Unsupported target "sse" with type "example" omitted |
| 67 | |
| 68 | # Unsupported target "sse_chat" with type "example" omitted |
| 69 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 70 | # Unsupported target "stream" with type "example" omitted |
| 71 | |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 72 | # Unsupported target "tls" with type "example" omitted |
| 73 | |
| 74 | # Unsupported target "todos" with type "example" omitted |
| 75 | |
| 76 | # Unsupported target "tracing" with type "example" omitted |
| 77 | |
| 78 | # Unsupported target "unix_socket" with type "example" omitted |
| 79 | |
| 80 | # Unsupported target "websockets" with type "example" omitted |
| 81 | |
| 82 | # Unsupported target "websockets_chat" with type "example" omitted |
| 83 | |
| 84 | # Unsupported target "wrapping" with type "example" omitted |
| 85 | |
| 86 | rust_library( |
| 87 | name = "warp", |
| 88 | srcs = glob(["**/*.rs"]), |
| 89 | crate_features = [ |
| 90 | "tokio-tungstenite", |
| 91 | "websocket", |
| 92 | ], |
| 93 | crate_root = "src/lib.rs", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 94 | data = [], |
| 95 | edition = "2018", |
| 96 | rustc_flags = [ |
| 97 | "--cap-lints=allow", |
| 98 | ], |
| 99 | tags = [ |
| 100 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 101 | "crate-name=warp", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 102 | "manual", |
| 103 | ], |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 104 | version = "0.3.6", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 105 | # buildifier: leave-alone |
| 106 | deps = [ |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 107 | "@raze__bytes__1_5_0//:bytes", |
| 108 | "@raze__futures_channel__0_3_28//:futures_channel", |
| 109 | "@raze__futures_util__0_3_28//:futures_util", |
| 110 | "@raze__headers__0_3_9//:headers", |
| 111 | "@raze__http__0_2_9//:http", |
| 112 | "@raze__hyper__0_14_27//:hyper", |
| 113 | "@raze__log__0_4_20//:log", |
| 114 | "@raze__mime__0_3_17//:mime", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 115 | "@raze__mime_guess__2_0_4//:mime_guess", |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 116 | "@raze__percent_encoding__2_3_0//:percent_encoding", |
| 117 | "@raze__pin_project__1_1_3//:pin_project", |
| 118 | "@raze__rustls_pemfile__1_0_3//:rustls_pemfile", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 119 | "@raze__scoped_tls__1_0_1//:scoped_tls", |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 120 | "@raze__serde__1_0_188//:serde", |
| 121 | "@raze__serde_json__1_0_107//:serde_json", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 122 | "@raze__serde_urlencoded__0_7_1//:serde_urlencoded", |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 123 | "@raze__tokio__1_32_0//:tokio", |
| 124 | "@raze__tokio_stream__0_1_14//:tokio_stream", |
| 125 | "@raze__tokio_tungstenite__0_20_1//:tokio_tungstenite", |
| 126 | "@raze__tokio_util__0_7_9//:tokio_util", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 127 | "@raze__tower_service__0_3_2//:tower_service", |
| 128 | "@raze__tracing__0_1_37//:tracing", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 129 | ], |
| 130 | ) |
| 131 | |
| 132 | # Unsupported target "addr" with type "test" omitted |
| 133 | |
| 134 | # Unsupported target "body" with type "test" omitted |
| 135 | |
| 136 | # Unsupported target "cookie" with type "test" omitted |
| 137 | |
| 138 | # Unsupported target "cors" with type "test" omitted |
| 139 | |
| 140 | # Unsupported target "ext" with type "test" omitted |
| 141 | |
| 142 | # Unsupported target "filter" with type "test" omitted |
| 143 | |
| 144 | # Unsupported target "fs" with type "test" omitted |
| 145 | |
| 146 | # Unsupported target "header" with type "test" omitted |
| 147 | |
| 148 | # Unsupported target "host" with type "test" omitted |
| 149 | |
| 150 | # Unsupported target "method" with type "test" omitted |
| 151 | |
| 152 | # Unsupported target "multipart" with type "test" omitted |
| 153 | |
| 154 | # Unsupported target "path" with type "test" omitted |
| 155 | |
| 156 | # Unsupported target "query" with type "test" omitted |
| 157 | |
| 158 | # Unsupported target "redirect" with type "test" omitted |
| 159 | |
| 160 | # Unsupported target "reply_with" with type "test" omitted |
| 161 | |
| 162 | # Unsupported target "tracing" with type "test" omitted |
| 163 | |
| 164 | # Unsupported target "ws" with type "test" omitted |