blob: 4ca7e37b75977763a296fe6b6316d0a30ad090a9 [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 "body" with type "bench" omitted
35
36# Unsupported target "connect" with type "bench" omitted
37
38# Unsupported target "end_to_end" with type "bench" omitted
39
40# Unsupported target "pipeline" with type "bench" omitted
41
42# Unsupported target "server" with type "bench" omitted
43
44# Unsupported target "client" with type "example" omitted
45
46# Unsupported target "client_json" with type "example" omitted
47
48# Unsupported target "echo" with type "example" omitted
49
50# Unsupported target "gateway" with type "example" omitted
51
52# Unsupported target "hello" with type "example" omitted
53
54# Unsupported target "http_proxy" with type "example" omitted
55
56# Unsupported target "multi_server" with type "example" omitted
57
58# Unsupported target "params" with type "example" omitted
59
60# Unsupported target "send_file" with type "example" omitted
61
62# Unsupported target "service_struct_impl" with type "example" omitted
63
64# Unsupported target "single_threaded" with type "example" omitted
65
66# Unsupported target "state" with type "example" omitted
67
68# Unsupported target "tower_client" with type "example" omitted
69
70# Unsupported target "tower_server" with type "example" omitted
71
72# Unsupported target "upgrades" with type "example" omitted
73
74# Unsupported target "web_api" with type "example" omitted
75
76rust_library(
77 name = "hyper",
78 srcs = glob(["**/*.rs"]),
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020079 crate_features = [
Leopold2aa8b182023-01-14 23:31:43 +010080 "client",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020081 "default",
Leopold2aa8b182023-01-14 23:31:43 +010082 "h2",
83 "http1",
84 "http2",
85 "server",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020086 "socket2",
87 "stream",
88 "tcp",
89 ],
90 crate_root = "src/lib.rs",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020091 data = [],
92 edition = "2018",
93 rustc_flags = [
94 "--cap-lints=allow",
95 ],
96 tags = [
97 "cargo-raze",
Leopold2aa8b182023-01-14 23:31:43 +010098 "crate-name=hyper",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020099 "manual",
100 ],
Leopold2aa8b182023-01-14 23:31:43 +0100101 version = "0.14.23",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200102 # buildifier: leave-alone
103 deps = [
Leopold2aa8b182023-01-14 23:31:43 +0100104 "@raze__bytes__1_3_0//:bytes",
105 "@raze__futures_channel__0_3_25//:futures_channel",
106 "@raze__futures_core__0_3_25//:futures_core",
107 "@raze__futures_util__0_3_25//:futures_util",
108 "@raze__h2__0_3_15//:h2",
109 "@raze__http__0_2_8//:http",
110 "@raze__http_body__0_4_5//:http_body",
111 "@raze__httparse__1_8_0//:httparse",
112 "@raze__httpdate__1_0_2//:httpdate",
113 "@raze__itoa__1_0_5//:itoa",
114 "@raze__pin_project_lite__0_2_9//:pin_project_lite",
115 "@raze__socket2__0_4_7//:socket2",
116 "@raze__tokio__1_24_1//:tokio",
117 "@raze__tower_service__0_3_2//:tower_service",
118 "@raze__tracing__0_1_37//:tracing",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200119 "@raze__want__0_3_0//:want",
Leopold2aa8b182023-01-14 23:31:43 +0100120 ],
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200121)
122
123# Unsupported target "client" with type "test" omitted
124
125# Unsupported target "integration" with type "test" omitted
126
127# Unsupported target "server" with type "test" omitted