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( |
| 13 | "@rules_rust//rust:rust.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_test", |
| 17 | ) |
| 18 | |
| 19 | package(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 | |
| 27 | licenses([ |
| 28 | "notice", # MIT from expression "MIT OR Apache-2.0" |
| 29 | ]) |
| 30 | |
| 31 | # Generated Targets |
| 32 | |
| 33 | # Unsupported target "autobahn-client" with type "example" omitted |
| 34 | |
| 35 | # Unsupported target "autobahn-server" with type "example" omitted |
| 36 | |
| 37 | # Unsupported target "callback-error" with type "example" omitted |
| 38 | |
| 39 | # Unsupported target "client" with type "example" omitted |
| 40 | |
| 41 | # Unsupported target "server" with type "example" omitted |
| 42 | |
| 43 | rust_library( |
| 44 | name = "tungstenite", |
| 45 | srcs = glob(["**/*.rs"]), |
| 46 | crate_features = [ |
| 47 | ], |
| 48 | crate_root = "src/lib.rs", |
| 49 | crate_type = "lib", |
| 50 | data = [], |
| 51 | edition = "2018", |
| 52 | rustc_flags = [ |
| 53 | "--cap-lints=allow", |
| 54 | ], |
| 55 | tags = [ |
| 56 | "cargo-raze", |
| 57 | "manual", |
| 58 | ], |
| 59 | version = "0.11.1", |
| 60 | # buildifier: leave-alone |
| 61 | deps = [ |
| 62 | "@raze__base64__0_12_3//:base64", |
| 63 | "@raze__byteorder__1_4_3//:byteorder", |
| 64 | "@raze__bytes__0_5_6//:bytes", |
| 65 | "@raze__http__0_2_4//:http", |
| 66 | "@raze__httparse__1_4_1//:httparse", |
| 67 | "@raze__input_buffer__0_3_1//:input_buffer", |
| 68 | "@raze__log__0_4_14//:log", |
| 69 | "@raze__rand__0_7_3//:rand", |
| 70 | "@raze__sha_1__0_9_6//:sha_1", |
| 71 | "@raze__url__2_2_2//:url", |
| 72 | "@raze__utf_8__0_7_6//:utf_8", |
| 73 | ], |
| 74 | ) |
| 75 | |
| 76 | # Unsupported target "connection_reset" with type "test" omitted |
| 77 | |
| 78 | # Unsupported target "no_send_after_close" with type "test" omitted |
| 79 | |
| 80 | # Unsupported target "receive_after_init_close" with type "test" omitted |