blob: b47fffb14d1202af09b6bf0830bd5cd26b927d92 [file] [log] [blame]
Serge Bazanskicbf1fa92021-07-02 17:28:50 +02001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
Leopold2aa8b182023-01-14 23:31:43 +010013 "@rules_rust//rust:defs.bzl",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020014 "rust_binary",
15 "rust_library",
Leopold2aa8b182023-01-14 23:31:43 +010016 "rust_proc_macro",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020017 "rust_test",
18)
19
20package(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
28licenses([
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
Leopold2aa8b182023-01-14 23:31:43 +010040# Unsupported target "custom_methods" with type "example" omitted
41
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020042# 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 Brund141d182023-10-02 15:07:01 +020056# Unsupported target "multipart" with type "example" omitted
57
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020058# 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 Brund141d182023-10-02 15:07:01 +020070# Unsupported target "stream" with type "example" omitted
71
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020072# 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
86rust_library(
87 name = "warp",
88 srcs = glob(["**/*.rs"]),
89 crate_features = [
90 "tokio-tungstenite",
91 "websocket",
92 ],
93 crate_root = "src/lib.rs",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020094 data = [],
95 edition = "2018",
96 rustc_flags = [
97 "--cap-lints=allow",
98 ],
99 tags = [
100 "cargo-raze",
Leopold2aa8b182023-01-14 23:31:43 +0100101 "crate-name=warp",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200102 "manual",
103 ],
Lorenz Brund141d182023-10-02 15:07:01 +0200104 version = "0.3.6",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200105 # buildifier: leave-alone
106 deps = [
Lorenz Brund141d182023-10-02 15:07:01 +0200107 "@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",
Leopold2aa8b182023-01-14 23:31:43 +0100115 "@raze__mime_guess__2_0_4//:mime_guess",
Lorenz Brund141d182023-10-02 15:07:01 +0200116 "@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",
Leopold2aa8b182023-01-14 23:31:43 +0100119 "@raze__scoped_tls__1_0_1//:scoped_tls",
Lorenz Brund141d182023-10-02 15:07:01 +0200120 "@raze__serde__1_0_188//:serde",
121 "@raze__serde_json__1_0_107//:serde_json",
Leopold2aa8b182023-01-14 23:31:43 +0100122 "@raze__serde_urlencoded__0_7_1//:serde_urlencoded",
Lorenz Brund141d182023-10-02 15:07:01 +0200123 "@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",
Leopold2aa8b182023-01-14 23:31:43 +0100127 "@raze__tower_service__0_3_2//:tower_service",
128 "@raze__tracing__0_1_37//:tracing",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200129 ],
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