blob: d04710f246c13aa0cf0a432a7568545e48d102ad [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(
13 "@rules_rust//rust:rust.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_test",
17)
18
19package(default_visibility = [
20 # Public for visibility by "@raze__crate__version//" targets.
21 #
22 # Prefer access through "//third_party/rust/cargo", which limits external
23 # visibility to explicit Cargo.toml dependencies.
24 "//visibility:public",
25])
26
27licenses([
28 "notice", # MIT from expression "MIT"
29])
30
31# Generated Targets
32
33# Unsupported target "autoreload" with type "example" omitted
34
35# Unsupported target "body" with type "example" omitted
36
37# Unsupported target "compression" with type "example" omitted
38
39# Unsupported target "dir" with type "example" omitted
40
41# Unsupported target "dyn_reply" with type "example" omitted
42
43# Unsupported target "file" with type "example" omitted
44
45# Unsupported target "futures" with type "example" omitted
46
47# Unsupported target "handlebars_template" with type "example" omitted
48
49# Unsupported target "headers" with type "example" omitted
50
51# Unsupported target "hello" with type "example" omitted
52
53# Unsupported target "query_string" with type "example" omitted
54
55# Unsupported target "rejections" with type "example" omitted
56
57# Unsupported target "returning" with type "example" omitted
58
59# Unsupported target "routing" with type "example" omitted
60
61# Unsupported target "sse" with type "example" omitted
62
63# Unsupported target "sse_chat" with type "example" omitted
64
65# Unsupported target "tls" with type "example" omitted
66
67# Unsupported target "todos" with type "example" omitted
68
69# Unsupported target "tracing" with type "example" omitted
70
71# Unsupported target "unix_socket" with type "example" omitted
72
73# Unsupported target "websockets" with type "example" omitted
74
75# Unsupported target "websockets_chat" with type "example" omitted
76
77# Unsupported target "wrapping" with type "example" omitted
78
79rust_library(
80 name = "warp",
81 srcs = glob(["**/*.rs"]),
82 crate_features = [
83 "tokio-tungstenite",
84 "websocket",
85 ],
86 crate_root = "src/lib.rs",
87 crate_type = "lib",
88 data = [],
89 edition = "2018",
90 rustc_flags = [
91 "--cap-lints=allow",
92 ],
93 tags = [
94 "cargo-raze",
95 "manual",
96 ],
97 version = "0.2.5",
98 # buildifier: leave-alone
99 deps = [
100 "@raze__bytes__0_5_6//:bytes",
101 "@raze__futures__0_3_15//:futures",
102 "@raze__headers__0_3_4//:headers",
103 "@raze__http__0_2_4//:http",
104 "@raze__hyper__0_13_10//:hyper",
105 "@raze__log__0_4_14//:log",
106 "@raze__mime__0_3_16//:mime",
107 "@raze__mime_guess__2_0_3//:mime_guess",
108 "@raze__pin_project__0_4_28//:pin_project",
109 "@raze__scoped_tls__1_0_0//:scoped_tls",
110 "@raze__serde__1_0_126//:serde",
111 "@raze__serde_json__1_0_64//:serde_json",
112 "@raze__serde_urlencoded__0_6_1//:serde_urlencoded",
113 "@raze__tokio__0_2_25//:tokio",
114 "@raze__tokio_tungstenite__0_11_0//:tokio_tungstenite",
115 "@raze__tower_service__0_3_1//:tower_service",
116 "@raze__tracing__0_1_26//:tracing",
117 "@raze__tracing_futures__0_2_5//:tracing_futures",
118 "@raze__urlencoding__1_3_3//:urlencoding",
119 ],
120)
121
122# Unsupported target "addr" with type "test" omitted
123
124# Unsupported target "body" with type "test" omitted
125
126# Unsupported target "cookie" with type "test" omitted
127
128# Unsupported target "cors" with type "test" omitted
129
130# Unsupported target "ext" with type "test" omitted
131
132# Unsupported target "filter" with type "test" omitted
133
134# Unsupported target "fs" with type "test" omitted
135
136# Unsupported target "header" with type "test" omitted
137
138# Unsupported target "host" with type "test" omitted
139
140# Unsupported target "method" with type "test" omitted
141
142# Unsupported target "multipart" with type "test" omitted
143
144# Unsupported target "path" with type "test" omitted
145
146# Unsupported target "query" with type "test" omitted
147
148# Unsupported target "redirect" with type "test" omitted
149
150# Unsupported target "reply_with" with type "test" omitted
151
152# Unsupported target "tracing" with type "test" omitted
153
154# Unsupported target "ws" with type "test" omitted