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 "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 | |
| 76 | rust_library( |
| 77 | name = "hyper", |
| 78 | srcs = glob(["**/*.rs"]), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 79 | crate_features = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 80 | "client", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 81 | "default", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 82 | "h2", |
| 83 | "http1", |
| 84 | "http2", |
| 85 | "server", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 86 | "socket2", |
| 87 | "stream", |
| 88 | "tcp", |
| 89 | ], |
| 90 | crate_root = "src/lib.rs", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 91 | data = [], |
| 92 | edition = "2018", |
| 93 | rustc_flags = [ |
| 94 | "--cap-lints=allow", |
| 95 | ], |
| 96 | tags = [ |
| 97 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 98 | "crate-name=hyper", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 99 | "manual", |
| 100 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 101 | version = "0.14.23", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 102 | # buildifier: leave-alone |
| 103 | deps = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 104 | "@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 Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 119 | "@raze__want__0_3_0//:want", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 120 | ], |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 121 | ) |
| 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 |