diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-08-06 19:02:02 +0400 |
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-08-06 19:02:02 +0400 |
| commit | d56f464e28e7fd701c7831a4db493ffab23464ac (patch) | |
| tree | 38f6814d2818feee4a2840e16ddffbbcca001937 | |
| parent | 6076a73af79c66492f0f1b17b55c1eb2c98eb821 (diff) | |
fix the bazel workspace
96 files changed, 8545 insertions, 87 deletions
diff --git a/rest-ratelimiter/BUILD b/rest-ratelimiter/BUILD new file mode 100644 index 0000000..32a7788 --- /dev/null +++ b/rest-ratelimiter/BUILD @@ -0,0 +1,16 @@ + +load("@rules_rust//cargo:cargo_build_script.bzl", "cargo_build_script") +load("@rules_rust//rust:rust.bzl", "rust_binary") + +cargo_build_script( + name = "build_script", + srcs = ["build.rs"], + deps = [ + "//rest-ratelimiter/cargo:tonic_build", + ], +) + +rust_binary( + name = "rest-ratelimiter", + srcs = ["src/main.rs"] +)
\ No newline at end of file diff --git a/rest-ratelimiter/Cargo.toml b/rest-ratelimiter/Cargo.toml index c1bfeb8..4d23c5e 100644 --- a/rest-ratelimiter/Cargo.toml +++ b/rest-ratelimiter/Cargo.toml @@ -1,22 +1,22 @@ -[package] -name = "rest-ratelimiter" -version = "0.1.0" -edition = "2018" - -[dependencies] -tonic = "0.5" -prost = "0.8" -tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } - -[build-dependencies] -tonic-build = "0.5" - -[package.metadata.raze] -# The path at which to write output files. -# -# `cargo raze` will generate Bazel-compatible BUILD files into this path. -# This can either be a relative path (e.g. "foo/bar"), relative to this -# Cargo.toml file; or relative to the Bazel workspace root (e.g. "//foo/bar"). -workspace_path = "//rest-ratelimiter" -genmode = "Remote" -default_gen_buildrs = true
\ No newline at end of file +[package]
+name = "rest-ratelimiter"
+version = "0.1.0"
+edition = "2018"
+
+[dependencies]
+tonic = "0.5"
+prost = "0.8"
+tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
+
+[[bin]]
+name = "rest-ratelimiter"
+path = "src/main.rs"
+
+[dev-dependencies]
+tonic-build = "0.5"
+
+[package.metadata.raze]
+workspace_path = "//rest-ratelimiter/cargo"
+genmode = "Remote"
+default_gen_buildrs = true
+package_aliases_dir = "cargo"
diff --git a/rest-ratelimiter/build.rs b/rest-ratelimiter/build.rs new file mode 100644 index 0000000..a1cee90 --- /dev/null +++ b/rest-ratelimiter/build.rs @@ -0,0 +1,4 @@ +fn main() -> Result<(), Box<dyn std::error::Error>> { + tonic_build::compile_protos("proto/nova.ratelimit.v1.proto").unwrap(); + Ok(()) +}
\ No newline at end of file diff --git a/rest-ratelimiter/cargo/BUILD.bazel b/rest-ratelimiter/cargo/BUILD.bazel new file mode 100644 index 0000000..8ee6ef6 --- /dev/null +++ b/rest-ratelimiter/cargo/BUILD.bazel @@ -0,0 +1,57 @@ +""" +@generated +cargo-raze generated Bazel file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +package(default_visibility = ["//visibility:public"]) + +licenses([ + "notice", # See individual crates for specific licenses +]) + +# Aliased targets +alias( + name = "prost", + actual = "@raze__prost__0_8_0//:prost", + tags = [ + "cargo-raze", + "manual", + ], +) + +alias( + name = "tokio", + actual = "@raze__tokio__1_9_0//:tokio", + tags = [ + "cargo-raze", + "manual", + ], +) + +alias( + name = "tonic", + actual = "@raze__tonic__0_5_0//:tonic", + tags = [ + "cargo-raze", + "manual", + ], +) + +alias( + name = "tonic_build", + actual = "@raze__tonic_build__0_5_1//:tonic_build", + tags = [ + "cargo-raze", + "manual", + ], +) + +# Export file for Stardoc support +exports_files( + [ + "crates.bzl", + ], + visibility = ["//visibility:public"], +) diff --git a/rest-ratelimiter/cargo/Cargo.raze.lock b/rest-ratelimiter/cargo/Cargo.raze.lock new file mode 100644 index 0000000..a9162d7 --- /dev/null +++ b/rest-ratelimiter/cargo/Cargo.raze.lock @@ -0,0 +1,830 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "anyhow" +version = "1.0.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486" + +[[package]] +name = "async-stream" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "171374e7e3b2504e0e5236e3b59260560f9fe94bfe9ac39ba5e4e929c5590625" +dependencies = [ + "async-stream-impl", + "futures-core", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "async-trait" +version = "0.1.51" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "bytes" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "fixedbitset" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "futures-channel" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99" + +[[package]] +name = "futures-sink" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53" + +[[package]] +name = "futures-task" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2" + +[[package]] +name = "futures-util" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78" +dependencies = [ + "autocfg", + "futures-core", + "futures-task", + "pin-project-lite", + "pin-utils", +] + +[[package]] +name = "getrandom" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "h2" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" + +[[package]] +name = "heck" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "http" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68" + +[[package]] +name = "httpdate" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440" + +[[package]] +name = "hyper" +version = "0.14.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b61cf2d1aebcf6e6352c97b81dc2244ca29194be1b276f5d8ad5c6330fffb11" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-timeout" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" +dependencies = [ + "hyper", + "pin-project-lite", + "tokio", + "tokio-io-timeout", +] + +[[package]] +name = "indexmap" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" +dependencies = [ + "autocfg", + "hashbrown", +] + +[[package]] +name = "itertools" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790" + +[[package]] +name = "log" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "memchr" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" + +[[package]] +name = "mio" +version = "0.7.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16" +dependencies = [ + "libc", + "log", + "miow", + "ntapi", + "winapi", +] + +[[package]] +name = "miow" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" +dependencies = [ + "winapi", +] + +[[package]] +name = "multimap" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" + +[[package]] +name = "ntapi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" +dependencies = [ + "winapi", +] + +[[package]] +name = "num_cpus" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "percent-encoding" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" + +[[package]] +name = "petgraph" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7" +dependencies = [ + "fixedbitset", + "indexmap", +] + +[[package]] +name = "pin-project" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "ppv-lite86" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" + +[[package]] +name = "proc-macro2" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "prost" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de5e2533f59d08fcf364fd374ebda0692a70bd6d7e66ef97f306f45c6c5d8020" +dependencies = [ + "bytes", + "prost-derive", +] + +[[package]] +name = "prost-build" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "355f634b43cdd80724ee7848f95770e7e70eefa6dcf14fea676216573b8fd603" +dependencies = [ + "bytes", + "heck", + "itertools", + "log", + "multimap", + "petgraph", + "prost", + "prost-types", + "tempfile", + "which", +] + +[[package]] +name = "prost-derive" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "600d2f334aa05acb02a755e217ef1ab6dea4d51b58b7846588b747edec04efba" +dependencies = [ + "anyhow", + "itertools", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "prost-types" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "603bbd6394701d13f3f25aada59c7de9d35a6a5887cfc156181234a44002771b" +dependencies = [ + "bytes", + "prost", +] + +[[package]] +name = "quote" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", + "rand_hc", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_hc" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" +dependencies = [ + "rand_core", +] + +[[package]] +name = "redox_syscall" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" +dependencies = [ + "bitflags", +] + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi", +] + +[[package]] +name = "rest-ratelimiter" +version = "0.1.0" +dependencies = [ + "prost", + "tokio", + "tonic", + "tonic-build", +] + +[[package]] +name = "slab" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590" + +[[package]] +name = "socket2" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "765f090f0e423d2b55843402a07915add955e7d60657db13707a159727326cad" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "syn" +version = "1.0.74" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1873d832550d4588c3dbc20f01361ab00bfe741048f71e3fecf145a7cc18b29c" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "tempfile" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" +dependencies = [ + "cfg-if", + "libc", + "rand", + "redox_syscall", + "remove_dir_all", + "winapi", +] + +[[package]] +name = "tokio" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b7b349f11a7047e6d1276853e612d152f5e8a352c61917887cc2169e2366b4c" +dependencies = [ + "autocfg", + "bytes", + "libc", + "memchr", + "mio", + "num_cpus", + "pin-project-lite", + "tokio-macros", + "winapi", +] + +[[package]] +name = "tokio-io-timeout" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90c49f106be240de154571dd31fbe48acb10ba6c6dd6f6517ad603abffa42de9" +dependencies = [ + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-macros" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tokio-stream" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2f3f698253f03119ac0102beaa64f67a67e08074d03a22d18784104543727f" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "log", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tonic" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b584f064fdfc50017ec39162d5aebce49912f1eb16fd128e04b7f4ce4907c7e5" +dependencies = [ + "async-stream", + "async-trait", + "base64", + "bytes", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-timeout", + "percent-encoding", + "pin-project", + "prost", + "prost-derive", + "tokio", + "tokio-stream", + "tokio-util", + "tower", + "tower-layer", + "tower-service", + "tracing", + "tracing-futures", +] + +[[package]] +name = "tonic-build" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d12faebbe071b06f486be82cc9318350814fdd07fcb28f3690840cd770599283" +dependencies = [ + "proc-macro2", + "prost-build", + "quote", + "syn", +] + +[[package]] +name = "tower" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f60422bc7fefa2f3ec70359b8ff1caff59d785877eb70595904605bcc412470f" +dependencies = [ + "futures-core", + "futures-util", + "indexmap", + "pin-project", + "rand", + "slab", + "tokio", + "tokio-stream", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62" + +[[package]] +name = "tower-service" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" + +[[package]] +name = "tracing" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d" +dependencies = [ + "cfg-if", + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c42e6fa53307c8a17e4ccd4dc81cf5ec38db9209f59b222210375b54ee40d1e2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "tracing-futures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" +dependencies = [ + "pin-project", + "tracing", +] + +[[package]] +name = "try-lock" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" + +[[package]] +name = "unicode-segmentation" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" + +[[package]] +name = "unicode-xid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "want" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" +dependencies = [ + "log", + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + +[[package]] +name = "which" +version = "4.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9" +dependencies = [ + "either", + "lazy_static", + "libc", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/rest-ratelimiter/cargo/crates.bzl b/rest-ratelimiter/cargo/crates.bzl new file mode 100644 index 0000000..3bed3d4 --- /dev/null +++ b/rest-ratelimiter/cargo/crates.bzl @@ -0,0 +1,872 @@ +""" +@generated +cargo-raze generated Bazel file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") # buildifier: disable=load +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # buildifier: disable=load +load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # buildifier: disable=load + +def raze_fetch_remote_crates(): + """This function defines a collection of repos and should be called in a WORKSPACE file""" + maybe( + http_archive, + name = "raze__anyhow__1_0_42", + url = "https://crates.io/api/v1/crates/anyhow/1.0.42/download", + type = "tar.gz", + sha256 = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486", + strip_prefix = "anyhow-1.0.42", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.anyhow-1.0.42.bazel"), + ) + + maybe( + http_archive, + name = "raze__async_stream__0_3_2", + url = "https://crates.io/api/v1/crates/async-stream/0.3.2/download", + type = "tar.gz", + sha256 = "171374e7e3b2504e0e5236e3b59260560f9fe94bfe9ac39ba5e4e929c5590625", + strip_prefix = "async-stream-0.3.2", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.async-stream-0.3.2.bazel"), + ) + + maybe( + http_archive, + name = "raze__async_stream_impl__0_3_2", + url = "https://crates.io/api/v1/crates/async-stream-impl/0.3.2/download", + type = "tar.gz", + sha256 = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308", + strip_prefix = "async-stream-impl-0.3.2", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.async-stream-impl-0.3.2.bazel"), + ) + + maybe( + http_archive, + name = "raze__async_trait__0_1_51", + url = "https://crates.io/api/v1/crates/async-trait/0.1.51/download", + type = "tar.gz", + sha256 = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e", + strip_prefix = "async-trait-0.1.51", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.async-trait-0.1.51.bazel"), + ) + + maybe( + http_archive, + name = "raze__autocfg__1_0_1", + url = "https://crates.io/api/v1/crates/autocfg/1.0.1/download", + type = "tar.gz", + sha256 = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a", + strip_prefix = "autocfg-1.0.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.autocfg-1.0.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__base64__0_13_0", + url = "https://crates.io/api/v1/crates/base64/0.13.0/download", + type = "tar.gz", + sha256 = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd", + strip_prefix = "base64-0.13.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.base64-0.13.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__bitflags__1_2_1", + url = "https://crates.io/api/v1/crates/bitflags/1.2.1/download", + type = "tar.gz", + sha256 = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693", + strip_prefix = "bitflags-1.2.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.bitflags-1.2.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__bytes__1_0_1", + url = "https://crates.io/api/v1/crates/bytes/1.0.1/download", + type = "tar.gz", + sha256 = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040", + strip_prefix = "bytes-1.0.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.bytes-1.0.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__cfg_if__1_0_0", + url = "https://crates.io/api/v1/crates/cfg-if/1.0.0/download", + type = "tar.gz", + sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", + strip_prefix = "cfg-if-1.0.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.cfg-if-1.0.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__either__1_6_1", + url = "https://crates.io/api/v1/crates/either/1.6.1/download", + type = "tar.gz", + sha256 = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457", + strip_prefix = "either-1.6.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.either-1.6.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__fixedbitset__0_2_0", + url = "https://crates.io/api/v1/crates/fixedbitset/0.2.0/download", + type = "tar.gz", + sha256 = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d", + strip_prefix = "fixedbitset-0.2.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.fixedbitset-0.2.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__fnv__1_0_7", + url = "https://crates.io/api/v1/crates/fnv/1.0.7/download", + type = "tar.gz", + sha256 = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1", + strip_prefix = "fnv-1.0.7", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.fnv-1.0.7.bazel"), + ) + + maybe( + http_archive, + name = "raze__futures_channel__0_3_16", + url = "https://crates.io/api/v1/crates/futures-channel/0.3.16/download", + type = "tar.gz", + sha256 = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9", + strip_prefix = "futures-channel-0.3.16", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.futures-channel-0.3.16.bazel"), + ) + + maybe( + http_archive, + name = "raze__futures_core__0_3_16", + url = "https://crates.io/api/v1/crates/futures-core/0.3.16/download", + type = "tar.gz", + sha256 = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99", + strip_prefix = "futures-core-0.3.16", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.futures-core-0.3.16.bazel"), + ) + + maybe( + http_archive, + name = "raze__futures_sink__0_3_16", + url = "https://crates.io/api/v1/crates/futures-sink/0.3.16/download", + type = "tar.gz", + sha256 = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53", + strip_prefix = "futures-sink-0.3.16", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.futures-sink-0.3.16.bazel"), + ) + + maybe( + http_archive, + name = "raze__futures_task__0_3_16", + url = "https://crates.io/api/v1/crates/futures-task/0.3.16/download", + type = "tar.gz", + sha256 = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2", + strip_prefix = "futures-task-0.3.16", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.futures-task-0.3.16.bazel"), + ) + + maybe( + http_archive, + name = "raze__futures_util__0_3_16", + url = "https://crates.io/api/v1/crates/futures-util/0.3.16/download", + type = "tar.gz", + sha256 = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78", + strip_prefix = "futures-util-0.3.16", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.futures-util-0.3.16.bazel"), + ) + + maybe( + http_archive, + name = "raze__getrandom__0_2_3", + url = "https://crates.io/api/v1/crates/getrandom/0.2.3/download", + type = "tar.gz", + sha256 = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753", + strip_prefix = "getrandom-0.2.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.getrandom-0.2.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__h2__0_3_3", + url = "https://crates.io/api/v1/crates/h2/0.3.3/download", + type = "tar.gz", + sha256 = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726", + strip_prefix = "h2-0.3.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.h2-0.3.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__hashbrown__0_11_2", + url = "https://crates.io/api/v1/crates/hashbrown/0.11.2/download", + type = "tar.gz", + sha256 = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e", + strip_prefix = "hashbrown-0.11.2", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.hashbrown-0.11.2.bazel"), + ) + + maybe( + http_archive, + name = "raze__heck__0_3_3", + url = "https://crates.io/api/v1/crates/heck/0.3.3/download", + type = "tar.gz", + sha256 = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c", + strip_prefix = "heck-0.3.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.heck-0.3.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__hermit_abi__0_1_19", + url = "https://crates.io/api/v1/crates/hermit-abi/0.1.19/download", + type = "tar.gz", + sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", + strip_prefix = "hermit-abi-0.1.19", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.hermit-abi-0.1.19.bazel"), + ) + + maybe( + http_archive, + name = "raze__http__0_2_4", + url = "https://crates.io/api/v1/crates/http/0.2.4/download", + type = "tar.gz", + sha256 = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11", + strip_prefix = "http-0.2.4", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.http-0.2.4.bazel"), + ) + + maybe( + http_archive, + name = "raze__http_body__0_4_2", + url = "https://crates.io/api/v1/crates/http-body/0.4.2/download", + type = "tar.gz", + sha256 = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9", + strip_prefix = "http-body-0.4.2", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.http-body-0.4.2.bazel"), + ) + + maybe( + http_archive, + name = "raze__httparse__1_4_1", + url = "https://crates.io/api/v1/crates/httparse/1.4.1/download", + type = "tar.gz", + sha256 = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68", + strip_prefix = "httparse-1.4.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.httparse-1.4.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__httpdate__1_0_1", + url = "https://crates.io/api/v1/crates/httpdate/1.0.1/download", + type = "tar.gz", + sha256 = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440", + strip_prefix = "httpdate-1.0.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.httpdate-1.0.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__hyper__0_14_11", + url = "https://crates.io/api/v1/crates/hyper/0.14.11/download", + type = "tar.gz", + sha256 = "0b61cf2d1aebcf6e6352c97b81dc2244ca29194be1b276f5d8ad5c6330fffb11", + strip_prefix = "hyper-0.14.11", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.hyper-0.14.11.bazel"), + ) + + maybe( + http_archive, + name = "raze__hyper_timeout__0_4_1", + url = "https://crates.io/api/v1/crates/hyper-timeout/0.4.1/download", + type = "tar.gz", + sha256 = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1", + strip_prefix = "hyper-timeout-0.4.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.hyper-timeout-0.4.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__indexmap__1_7_0", + url = "https://crates.io/api/v1/crates/indexmap/1.7.0/download", + type = "tar.gz", + sha256 = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5", + strip_prefix = "indexmap-1.7.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.indexmap-1.7.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__itertools__0_10_1", + url = "https://crates.io/api/v1/crates/itertools/0.10.1/download", + type = "tar.gz", + sha256 = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf", + strip_prefix = "itertools-0.10.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.itertools-0.10.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__itoa__0_4_7", + url = "https://crates.io/api/v1/crates/itoa/0.4.7/download", + type = "tar.gz", + sha256 = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736", + strip_prefix = "itoa-0.4.7", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.itoa-0.4.7.bazel"), + ) + + maybe( + http_archive, + name = "raze__lazy_static__1_4_0", + url = "https://crates.io/api/v1/crates/lazy_static/1.4.0/download", + type = "tar.gz", + sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", + strip_prefix = "lazy_static-1.4.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.lazy_static-1.4.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__libc__0_2_98", + url = "https://crates.io/api/v1/crates/libc/0.2.98/download", + type = "tar.gz", + sha256 = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790", + strip_prefix = "libc-0.2.98", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.libc-0.2.98.bazel"), + ) + + maybe( + http_archive, + name = "raze__log__0_4_14", + url = "https://crates.io/api/v1/crates/log/0.4.14/download", + type = "tar.gz", + sha256 = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710", + strip_prefix = "log-0.4.14", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.log-0.4.14.bazel"), + ) + + maybe( + http_archive, + name = "raze__memchr__2_4_0", + url = "https://crates.io/api/v1/crates/memchr/2.4.0/download", + type = "tar.gz", + sha256 = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc", + strip_prefix = "memchr-2.4.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.memchr-2.4.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__mio__0_7_13", + url = "https://crates.io/api/v1/crates/mio/0.7.13/download", + type = "tar.gz", + sha256 = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16", + strip_prefix = "mio-0.7.13", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.mio-0.7.13.bazel"), + ) + + maybe( + http_archive, + name = "raze__miow__0_3_7", + url = "https://crates.io/api/v1/crates/miow/0.3.7/download", + type = "tar.gz", + sha256 = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21", + strip_prefix = "miow-0.3.7", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.miow-0.3.7.bazel"), + ) + + maybe( + http_archive, + name = "raze__multimap__0_8_3", + url = "https://crates.io/api/v1/crates/multimap/0.8.3/download", + type = "tar.gz", + sha256 = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a", + strip_prefix = "multimap-0.8.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.multimap-0.8.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__ntapi__0_3_6", + url = "https://crates.io/api/v1/crates/ntapi/0.3.6/download", + type = "tar.gz", + sha256 = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44", + strip_prefix = "ntapi-0.3.6", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.ntapi-0.3.6.bazel"), + ) + + maybe( + http_archive, + name = "raze__num_cpus__1_13_0", + url = "https://crates.io/api/v1/crates/num_cpus/1.13.0/download", + type = "tar.gz", + sha256 = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3", + strip_prefix = "num_cpus-1.13.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.num_cpus-1.13.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__percent_encoding__2_1_0", + url = "https://crates.io/api/v1/crates/percent-encoding/2.1.0/download", + type = "tar.gz", + sha256 = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e", + strip_prefix = "percent-encoding-2.1.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.percent-encoding-2.1.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__petgraph__0_5_1", + url = "https://crates.io/api/v1/crates/petgraph/0.5.1/download", + type = "tar.gz", + sha256 = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7", + strip_prefix = "petgraph-0.5.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.petgraph-0.5.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__pin_project__1_0_8", + url = "https://crates.io/api/v1/crates/pin-project/1.0.8/download", + type = "tar.gz", + sha256 = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08", + strip_prefix = "pin-project-1.0.8", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.pin-project-1.0.8.bazel"), + ) + + maybe( + http_archive, + name = "raze__pin_project_internal__1_0_8", + url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.8/download", + type = "tar.gz", + sha256 = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389", + strip_prefix = "pin-project-internal-1.0.8", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.pin-project-internal-1.0.8.bazel"), + ) + + maybe( + http_archive, + name = "raze__pin_project_lite__0_2_7", + url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download", + type = "tar.gz", + sha256 = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443", + strip_prefix = "pin-project-lite-0.2.7", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.pin-project-lite-0.2.7.bazel"), + ) + + maybe( + http_archive, + name = "raze__pin_utils__0_1_0", + url = "https://crates.io/api/v1/crates/pin-utils/0.1.0/download", + type = "tar.gz", + sha256 = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", + strip_prefix = "pin-utils-0.1.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.pin-utils-0.1.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__ppv_lite86__0_2_10", + url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download", + type = "tar.gz", + sha256 = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857", + strip_prefix = "ppv-lite86-0.2.10", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.ppv-lite86-0.2.10.bazel"), + ) + + maybe( + http_archive, + name = "raze__proc_macro2__1_0_28", + url = "https://crates.io/api/v1/crates/proc-macro2/1.0.28/download", + type = "tar.gz", + sha256 = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612", + strip_prefix = "proc-macro2-1.0.28", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.proc-macro2-1.0.28.bazel"), + ) + + maybe( + http_archive, + name = "raze__prost__0_8_0", + url = "https://crates.io/api/v1/crates/prost/0.8.0/download", + type = "tar.gz", + sha256 = "de5e2533f59d08fcf364fd374ebda0692a70bd6d7e66ef97f306f45c6c5d8020", + strip_prefix = "prost-0.8.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.prost-0.8.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__prost_build__0_8_0", + url = "https://crates.io/api/v1/crates/prost-build/0.8.0/download", + type = "tar.gz", + sha256 = "355f634b43cdd80724ee7848f95770e7e70eefa6dcf14fea676216573b8fd603", + strip_prefix = "prost-build-0.8.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.prost-build-0.8.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__prost_derive__0_8_0", + url = "https://crates.io/api/v1/crates/prost-derive/0.8.0/download", + type = "tar.gz", + sha256 = "600d2f334aa05acb02a755e217ef1ab6dea4d51b58b7846588b747edec04efba", + strip_prefix = "prost-derive-0.8.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.prost-derive-0.8.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__prost_types__0_8_0", + url = "https://crates.io/api/v1/crates/prost-types/0.8.0/download", + type = "tar.gz", + sha256 = "603bbd6394701d13f3f25aada59c7de9d35a6a5887cfc156181234a44002771b", + strip_prefix = "prost-types-0.8.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.prost-types-0.8.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__quote__1_0_9", + url = "https://crates.io/api/v1/crates/quote/1.0.9/download", + type = "tar.gz", + sha256 = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7", + strip_prefix = "quote-1.0.9", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.quote-1.0.9.bazel"), + ) + + maybe( + http_archive, + name = "raze__rand__0_8_4", + url = "https://crates.io/api/v1/crates/rand/0.8.4/download", + type = "tar.gz", + sha256 = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8", + strip_prefix = "rand-0.8.4", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.rand-0.8.4.bazel"), + ) + + maybe( + http_archive, + name = "raze__rand_chacha__0_3_1", + url = "https://crates.io/api/v1/crates/rand_chacha/0.3.1/download", + type = "tar.gz", + sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", + strip_prefix = "rand_chacha-0.3.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.rand_chacha-0.3.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__rand_core__0_6_3", + url = "https://crates.io/api/v1/crates/rand_core/0.6.3/download", + type = "tar.gz", + sha256 = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7", + strip_prefix = "rand_core-0.6.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.rand_core-0.6.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__rand_hc__0_3_1", + url = "https://crates.io/api/v1/crates/rand_hc/0.3.1/download", + type = "tar.gz", + sha256 = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7", + strip_prefix = "rand_hc-0.3.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.rand_hc-0.3.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__redox_syscall__0_2_10", + url = "https://crates.io/api/v1/crates/redox_syscall/0.2.10/download", + type = "tar.gz", + sha256 = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff", + strip_prefix = "redox_syscall-0.2.10", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.redox_syscall-0.2.10.bazel"), + ) + + maybe( + http_archive, + name = "raze__remove_dir_all__0_5_3", + url = "https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download", + type = "tar.gz", + sha256 = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7", + strip_prefix = "remove_dir_all-0.5.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.remove_dir_all-0.5.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__slab__0_4_4", + url = "https://crates.io/api/v1/crates/slab/0.4.4/download", + type = "tar.gz", + sha256 = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590", + strip_prefix = "slab-0.4.4", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.slab-0.4.4.bazel"), + ) + + maybe( + http_archive, + name = "raze__socket2__0_4_1", + url = "https://crates.io/api/v1/crates/socket2/0.4.1/download", + type = "tar.gz", + sha256 = "765f090f0e423d2b55843402a07915add955e7d60657db13707a159727326cad", + strip_prefix = "socket2-0.4.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.socket2-0.4.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__syn__1_0_74", + url = "https://crates.io/api/v1/crates/syn/1.0.74/download", + type = "tar.gz", + sha256 = "1873d832550d4588c3dbc20f01361ab00bfe741048f71e3fecf145a7cc18b29c", + strip_prefix = "syn-1.0.74", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.syn-1.0.74.bazel"), + ) + + maybe( + http_archive, + name = "raze__tempfile__3_2_0", + url = "https://crates.io/api/v1/crates/tempfile/3.2.0/download", + type = "tar.gz", + sha256 = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22", + strip_prefix = "tempfile-3.2.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tempfile-3.2.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__tokio__1_9_0", + url = "https://crates.io/api/v1/crates/tokio/1.9.0/download", + type = "tar.gz", + sha256 = "4b7b349f11a7047e6d1276853e612d152f5e8a352c61917887cc2169e2366b4c", + strip_prefix = "tokio-1.9.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tokio-1.9.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__tokio_io_timeout__1_1_1", + url = "https://crates.io/api/v1/crates/tokio-io-timeout/1.1.1/download", + type = "tar.gz", + sha256 = "90c49f106be240de154571dd31fbe48acb10ba6c6dd6f6517ad603abffa42de9", + strip_prefix = "tokio-io-timeout-1.1.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tokio-io-timeout-1.1.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__tokio_macros__1_3_0", + url = "https://crates.io/api/v1/crates/tokio-macros/1.3.0/download", + type = "tar.gz", + sha256 = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110", + strip_prefix = "tokio-macros-1.3.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tokio-macros-1.3.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__tokio_stream__0_1_7", + url = "https://crates.io/api/v1/crates/tokio-stream/0.1.7/download", + type = "tar.gz", + sha256 = "7b2f3f698253f03119ac0102beaa64f67a67e08074d03a22d18784104543727f", + strip_prefix = "tokio-stream-0.1.7", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tokio-stream-0.1.7.bazel"), + ) + + maybe( + http_archive, + name = "raze__tokio_util__0_6_7", + url = "https://crates.io/api/v1/crates/tokio-util/0.6.7/download", + type = "tar.gz", + sha256 = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592", + strip_prefix = "tokio-util-0.6.7", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tokio-util-0.6.7.bazel"), + ) + + maybe( + http_archive, + name = "raze__tonic__0_5_0", + url = "https://crates.io/api/v1/crates/tonic/0.5.0/download", + type = "tar.gz", + sha256 = "b584f064fdfc50017ec39162d5aebce49912f1eb16fd128e04b7f4ce4907c7e5", + strip_prefix = "tonic-0.5.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tonic-0.5.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__tonic_build__0_5_1", + url = "https://crates.io/api/v1/crates/tonic-build/0.5.1/download", + type = "tar.gz", + sha256 = "d12faebbe071b06f486be82cc9318350814fdd07fcb28f3690840cd770599283", + strip_prefix = "tonic-build-0.5.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tonic-build-0.5.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__tower__0_4_8", + url = "https://crates.io/api/v1/crates/tower/0.4.8/download", + type = "tar.gz", + sha256 = "f60422bc7fefa2f3ec70359b8ff1caff59d785877eb70595904605bcc412470f", + strip_prefix = "tower-0.4.8", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tower-0.4.8.bazel"), + ) + + maybe( + http_archive, + name = "raze__tower_layer__0_3_1", + url = "https://crates.io/api/v1/crates/tower-layer/0.3.1/download", + type = "tar.gz", + sha256 = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62", + strip_prefix = "tower-layer-0.3.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tower-layer-0.3.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__tower_service__0_3_1", + url = "https://crates.io/api/v1/crates/tower-service/0.3.1/download", + type = "tar.gz", + sha256 = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6", + strip_prefix = "tower-service-0.3.1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tower-service-0.3.1.bazel"), + ) + + maybe( + http_archive, + name = "raze__tracing__0_1_26", + url = "https://crates.io/api/v1/crates/tracing/0.1.26/download", + type = "tar.gz", + sha256 = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d", + strip_prefix = "tracing-0.1.26", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tracing-0.1.26.bazel"), + ) + + maybe( + http_archive, + name = "raze__tracing_attributes__0_1_15", + url = "https://crates.io/api/v1/crates/tracing-attributes/0.1.15/download", + type = "tar.gz", + sha256 = "c42e6fa53307c8a17e4ccd4dc81cf5ec38db9209f59b222210375b54ee40d1e2", + strip_prefix = "tracing-attributes-0.1.15", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tracing-attributes-0.1.15.bazel"), + ) + + maybe( + http_archive, + name = "raze__tracing_core__0_1_18", + url = "https://crates.io/api/v1/crates/tracing-core/0.1.18/download", + type = "tar.gz", + sha256 = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052", + strip_prefix = "tracing-core-0.1.18", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tracing-core-0.1.18.bazel"), + ) + + maybe( + http_archive, + name = "raze__tracing_futures__0_2_5", + url = "https://crates.io/api/v1/crates/tracing-futures/0.2.5/download", + type = "tar.gz", + sha256 = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2", + strip_prefix = "tracing-futures-0.2.5", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.tracing-futures-0.2.5.bazel"), + ) + + maybe( + http_archive, + name = "raze__try_lock__0_2_3", + url = "https://crates.io/api/v1/crates/try-lock/0.2.3/download", + type = "tar.gz", + sha256 = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642", + strip_prefix = "try-lock-0.2.3", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.try-lock-0.2.3.bazel"), + ) + + maybe( + http_archive, + name = "raze__unicode_segmentation__1_8_0", + url = "https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download", + type = "tar.gz", + sha256 = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b", + strip_prefix = "unicode-segmentation-1.8.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.unicode-segmentation-1.8.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__unicode_xid__0_2_2", + url = "https://crates.io/api/v1/crates/unicode-xid/0.2.2/download", + type = "tar.gz", + sha256 = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3", + strip_prefix = "unicode-xid-0.2.2", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.unicode-xid-0.2.2.bazel"), + ) + + maybe( + http_archive, + name = "raze__want__0_3_0", + url = "https://crates.io/api/v1/crates/want/0.3.0/download", + type = "tar.gz", + sha256 = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0", + strip_prefix = "want-0.3.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.want-0.3.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__wasi__0_10_2_wasi_snapshot_preview1", + url = "https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download", + type = "tar.gz", + sha256 = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6", + strip_prefix = "wasi-0.10.2+wasi-snapshot-preview1", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel"), + ) + + maybe( + http_archive, + name = "raze__which__4_2_2", + url = "https://crates.io/api/v1/crates/which/4.2.2/download", + type = "tar.gz", + sha256 = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9", + strip_prefix = "which-4.2.2", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.which-4.2.2.bazel"), + ) + + maybe( + http_archive, + name = "raze__winapi__0_3_9", + url = "https://crates.io/api/v1/crates/winapi/0.3.9/download", + type = "tar.gz", + sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", + strip_prefix = "winapi-0.3.9", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.winapi-0.3.9.bazel"), + ) + + maybe( + http_archive, + name = "raze__winapi_i686_pc_windows_gnu__0_4_0", + url = "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download", + type = "tar.gz", + sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", + strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"), + ) + + maybe( + http_archive, + name = "raze__winapi_x86_64_pc_windows_gnu__0_4_0", + url = "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", + type = "tar.gz", + sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", + strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0", + build_file = Label("//rest-ratelimiter/cargo/remote:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"), + ) diff --git a/rest-ratelimiter/cargo/remote/BUILD.anyhow-1.0.42.bazel b/rest-ratelimiter/cargo/remote/BUILD.anyhow-1.0.42.bazel new file mode 100644 index 0000000..dc37b86 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.anyhow-1.0.42.bazel @@ -0,0 +1,113 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "anyhow_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.42", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "anyhow", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.42", + # buildifier: leave-alone + deps = [ + ":anyhow_build_script", + ], +) + +# Unsupported target "compiletest" with type "test" omitted + +# Unsupported target "test_autotrait" with type "test" omitted + +# Unsupported target "test_backtrace" with type "test" omitted + +# Unsupported target "test_boxed" with type "test" omitted + +# Unsupported target "test_chain" with type "test" omitted + +# Unsupported target "test_context" with type "test" omitted + +# Unsupported target "test_convert" with type "test" omitted + +# Unsupported target "test_downcast" with type "test" omitted + +# Unsupported target "test_ffi" with type "test" omitted + +# Unsupported target "test_fmt" with type "test" omitted + +# Unsupported target "test_macros" with type "test" omitted + +# Unsupported target "test_repr" with type "test" omitted + +# Unsupported target "test_source" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.async-stream-0.3.2.bazel b/rest-ratelimiter/cargo/remote/BUILD.async-stream-0.3.2.bazel new file mode 100644 index 0000000..f2edcd8 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.async-stream-0.3.2.bazel @@ -0,0 +1,65 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "tcp_accept" with type "example" omitted + +rust_library( + name = "async_stream", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + proc_macro_deps = [ + "@raze__async_stream_impl__0_3_2//:async_stream_impl", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.2", + # buildifier: leave-alone + deps = [ + "@raze__futures_core__0_3_16//:futures_core", + ], +) + +# Unsupported target "for_await" with type "test" omitted + +# Unsupported target "stream" with type "test" omitted + +# Unsupported target "try_stream" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.async-stream-impl-0.3.2.bazel b/rest-ratelimiter/cargo/remote/BUILD.async-stream-impl-0.3.2.bazel new file mode 100644 index 0000000..b3384d9 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.async-stream-impl-0.3.2.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "async_stream_impl", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "proc-macro", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.2", + # buildifier: leave-alone + deps = [ + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.async-trait-0.1.51.bazel b/rest-ratelimiter/cargo/remote/BUILD.async-trait-0.1.51.bazel new file mode 100644 index 0000000..3d62e4b --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.async-trait-0.1.51.bazel @@ -0,0 +1,90 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "async_trait_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.51", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "async_trait", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "proc-macro", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.51", + # buildifier: leave-alone + deps = [ + ":async_trait_build_script", + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) + +# Unsupported target "compiletest" with type "test" omitted + +# Unsupported target "test" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.autocfg-1.0.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.autocfg-1.0.1.bazel new file mode 100644 index 0000000..cf35521 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.autocfg-1.0.1.bazel @@ -0,0 +1,63 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +# Unsupported target "integers" with type "example" omitted + +# Unsupported target "paths" with type "example" omitted + +# Unsupported target "traits" with type "example" omitted + +# Unsupported target "versions" with type "example" omitted + +rust_library( + name = "autocfg", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.1", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "rustflags" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.base64-0.13.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.base64-0.13.0.bazel new file mode 100644 index 0000000..8c54578 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.base64-0.13.0.bazel @@ -0,0 +1,69 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "benchmarks" with type "bench" omitted + +# Unsupported target "base64" with type "example" omitted + +# Unsupported target "make_tables" with type "example" omitted + +rust_library( + name = "base64", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.13.0", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "decode" with type "test" omitted + +# Unsupported target "encode" with type "test" omitted + +# Unsupported target "helpers" with type "test" omitted + +# Unsupported target "tests" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.bazel b/rest-ratelimiter/cargo/remote/BUILD.bazel new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.bazel diff --git a/rest-ratelimiter/cargo/remote/BUILD.bitflags-1.2.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.bitflags-1.2.1.bazel new file mode 100644 index 0000000..68c78c8 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.bitflags-1.2.1.bazel @@ -0,0 +1,85 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "bitflags_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.2.1", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "bitflags", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.2.1", + # buildifier: leave-alone + deps = [ + ":bitflags_build_script", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.bytes-1.0.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.bytes-1.0.1.bazel new file mode 100644 index 0000000..24e71f9 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.bytes-1.0.1.bazel @@ -0,0 +1,83 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "buf" with type "bench" omitted + +# Unsupported target "bytes" with type "bench" omitted + +# Unsupported target "bytes_mut" with type "bench" omitted + +rust_library( + name = "bytes", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.1", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "test_buf" with type "test" omitted + +# Unsupported target "test_buf_mut" with type "test" omitted + +# Unsupported target "test_bytes" with type "test" omitted + +# Unsupported target "test_bytes_odd_alloc" with type "test" omitted + +# Unsupported target "test_bytes_vec_alloc" with type "test" omitted + +# Unsupported target "test_chain" with type "test" omitted + +# Unsupported target "test_debug" with type "test" omitted + +# Unsupported target "test_iter" with type "test" omitted + +# Unsupported target "test_reader" with type "test" omitted + +# Unsupported target "test_serde" with type "test" omitted + +# Unsupported target "test_take" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.cfg-if-1.0.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.cfg-if-1.0.0.bazel new file mode 100644 index 0000000..6b9e3ca --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.cfg-if-1.0.0.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "cfg_if", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.0", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "xcrate" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.either-1.6.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.either-1.6.1.bazel new file mode 100644 index 0000000..ce66c1c --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.either-1.6.1.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "either", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "use_std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.6.1", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.fixedbitset-0.2.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.fixedbitset-0.2.0.bazel new file mode 100644 index 0000000..51503e3 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.fixedbitset-0.2.0.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "benches" with type "bench" omitted + +rust_library( + name = "fixedbitset", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.0", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.fnv-1.0.7.bazel b/rest-ratelimiter/cargo/remote/BUILD.fnv-1.0.7.bazel new file mode 100644 index 0000000..f458f38 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.fnv-1.0.7.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +rust_library( + name = "fnv", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.7", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.futures-channel-0.3.16.bazel b/rest-ratelimiter/cargo/remote/BUILD.futures-channel-0.3.16.bazel new file mode 100644 index 0000000..2da9dd5 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.futures-channel-0.3.16.bazel @@ -0,0 +1,100 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "futures_channel_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "alloc", + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + visibility = ["//visibility:private"], + deps = [ + ], +) + +# Unsupported target "sync_mpsc" with type "bench" omitted + +rust_library( + name = "futures_channel", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + # buildifier: leave-alone + deps = [ + ":futures_channel_build_script", + "@raze__futures_core__0_3_16//:futures_core", + ], +) + +# Unsupported target "channel" with type "test" omitted + +# Unsupported target "mpsc" with type "test" omitted + +# Unsupported target "mpsc-close" with type "test" omitted + +# Unsupported target "oneshot" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.futures-core-0.3.16.bazel b/rest-ratelimiter/cargo/remote/BUILD.futures-core-0.3.16.bazel new file mode 100644 index 0000000..c42fcdf --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.futures-core-0.3.16.bazel @@ -0,0 +1,89 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "futures_core_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "alloc", + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "futures_core", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + # buildifier: leave-alone + deps = [ + ":futures_core_build_script", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.futures-sink-0.3.16.bazel b/rest-ratelimiter/cargo/remote/BUILD.futures-sink-0.3.16.bazel new file mode 100644 index 0000000..160ae42 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.futures-sink-0.3.16.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "futures_sink", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.futures-task-0.3.16.bazel b/rest-ratelimiter/cargo/remote/BUILD.futures-task-0.3.16.bazel new file mode 100644 index 0000000..863dfab --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.futures-task-0.3.16.bazel @@ -0,0 +1,85 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "futures_task_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "alloc", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "futures_task", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + # buildifier: leave-alone + deps = [ + ":futures_task_build_script", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.futures-util-0.3.16.bazel b/rest-ratelimiter/cargo/remote/BUILD.futures-util-0.3.16.bazel new file mode 100644 index 0000000..71d1574 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.futures-util-0.3.16.bazel @@ -0,0 +1,92 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "futures_util_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "alloc", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + visibility = ["//visibility:private"], + deps = [ + "@raze__autocfg__1_0_1//:autocfg", + ], +) + +# Unsupported target "futures_unordered" with type "bench" omitted + +rust_library( + name = "futures_util", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.16", + # buildifier: leave-alone + deps = [ + ":futures_util_build_script", + "@raze__futures_core__0_3_16//:futures_core", + "@raze__futures_task__0_3_16//:futures_task", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__pin_utils__0_1_0//:pin_utils", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.getrandom-0.2.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.getrandom-0.2.3.bazel new file mode 100644 index 0000000..7e6dcd5 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.getrandom-0.2.3.bazel @@ -0,0 +1,103 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "mod" with type "bench" omitted + +rust_library( + name = "getrandom", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.3", + # buildifier: leave-alone + deps = [ + "@raze__cfg_if__1_0_0//:cfg_if", + ] + selects.with_or({ + # cfg(all(target_arch = "wasm32", target_os = "unknown")) + ( + "@rules_rust//rust/platform:wasm32-unknown-unknown", + ): [ + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(target_os = "wasi") + ( + "@rules_rust//rust/platform:wasm32-wasi", + ): [ + "@raze__wasi__0_10_2_wasi_snapshot_preview1//:wasi", + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + "@raze__libc__0_2_98//:libc", + ], + "//conditions:default": [], + }), +) + +# Unsupported target "custom" with type "test" omitted + +# Unsupported target "normal" with type "test" omitted + +# Unsupported target "rdrand" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.h2-0.3.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.h2-0.3.3.bazel new file mode 100644 index 0000000..711b003 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.h2-0.3.3.bazel @@ -0,0 +1,70 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "akamai" with type "example" omitted + +# Unsupported target "client" with type "example" omitted + +# Unsupported target "server" with type "example" omitted + +rust_library( + name = "h2", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.3", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + "@raze__fnv__1_0_7//:fnv", + "@raze__futures_core__0_3_16//:futures_core", + "@raze__futures_sink__0_3_16//:futures_sink", + "@raze__futures_util__0_3_16//:futures_util", + "@raze__http__0_2_4//:http", + "@raze__indexmap__1_7_0//:indexmap", + "@raze__slab__0_4_4//:slab", + "@raze__tokio__1_9_0//:tokio", + "@raze__tokio_util__0_6_7//:tokio_util", + "@raze__tracing__0_1_26//:tracing", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.hashbrown-0.11.2.bazel b/rest-ratelimiter/cargo/remote/BUILD.hashbrown-0.11.2.bazel new file mode 100644 index 0000000..5b9cea4 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.hashbrown-0.11.2.bazel @@ -0,0 +1,64 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +# Unsupported target "bench" with type "bench" omitted + +rust_library( + name = "hashbrown", + srcs = glob(["**/*.rs"]), + crate_features = [ + "raw", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.11.2", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "hasher" with type "test" omitted + +# Unsupported target "rayon" with type "test" omitted + +# Unsupported target "serde" with type "test" omitted + +# Unsupported target "set" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.heck-0.3.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.heck-0.3.3.bazel new file mode 100644 index 0000000..8cc3d79 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.heck-0.3.3.bazel @@ -0,0 +1,54 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "heck", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.3", + # buildifier: leave-alone + deps = [ + "@raze__unicode_segmentation__1_8_0//:unicode_segmentation", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.hermit-abi-0.1.19.bazel b/rest-ratelimiter/cargo/remote/BUILD.hermit-abi-0.1.19.bazel new file mode 100644 index 0000000..f21a58b --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.hermit-abi-0.1.19.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "hermit_abi", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.19", + # buildifier: leave-alone + deps = [ + "@raze__libc__0_2_98//:libc", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.http-0.2.4.bazel b/rest-ratelimiter/cargo/remote/BUILD.http-0.2.4.bazel new file mode 100644 index 0000000..84eb266 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.http-0.2.4.bazel @@ -0,0 +1,72 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "header_map" with type "bench" omitted + +# Unsupported target "header_name" with type "bench" omitted + +# Unsupported target "header_value" with type "bench" omitted + +# Unsupported target "method" with type "bench" omitted + +# Unsupported target "uri" with type "bench" omitted + +rust_library( + name = "http", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.4", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + "@raze__fnv__1_0_7//:fnv", + "@raze__itoa__0_4_7//:itoa", + ], +) + +# Unsupported target "header_map" with type "test" omitted + +# Unsupported target "header_map_fuzz" with type "test" omitted + +# Unsupported target "status_code" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.http-body-0.4.2.bazel b/rest-ratelimiter/cargo/remote/BUILD.http-body-0.4.2.bazel new file mode 100644 index 0000000..ec43684 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.http-body-0.4.2.bazel @@ -0,0 +1,58 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "http_body", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.2", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + "@raze__http__0_2_4//:http", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + ], +) + +# Unsupported target "is_end_stream" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.httparse-1.4.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.httparse-1.4.1.bazel new file mode 100644 index 0000000..07a4f3c --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.httparse-1.4.1.bazel @@ -0,0 +1,91 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "httparse_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.4.1", + visibility = ["//visibility:private"], + deps = [ + ], +) + +# Unsupported target "parse" with type "bench" omitted + +rust_library( + name = "httparse", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.4.1", + # buildifier: leave-alone + deps = [ + ":httparse_build_script", + ], +) + +# Unsupported target "uri" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.httpdate-1.0.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.httpdate-1.0.1.bazel new file mode 100644 index 0000000..0bb1794 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.httpdate-1.0.1.bazel @@ -0,0 +1,53 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "httpdate", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.1", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.hyper-0.14.11.bazel b/rest-ratelimiter/cargo/remote/BUILD.hyper-0.14.11.bazel new file mode 100644 index 0000000..13d201f --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.hyper-0.14.11.bazel @@ -0,0 +1,149 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "body" with type "bench" omitted + +# Unsupported target "connect" with type "bench" omitted + +# Unsupported target "end_to_end" with type "bench" omitted + +# Unsupported target "pipeline" with type "bench" omitted + +# Unsupported target "server" with type "bench" omitted + +# Unsupported target "hyper" with type "cdylib" omitted + +# Unsupported target "client" with type "example" omitted + +# Unsupported target "client_json" with type "example" omitted + +# Unsupported target "echo" with type "example" omitted + +# Unsupported target "gateway" with type "example" omitted + +# Unsupported target "hello" with type "example" omitted + +# Unsupported target "http_proxy" with type "example" omitted + +# Unsupported target "multi_server" with type "example" omitted + +# Unsupported target "params" with type "example" omitted + +# Unsupported target "send_file" with type "example" omitted + +# Unsupported target "service_struct_impl" with type "example" omitted + +# Unsupported target "single_threaded" with type "example" omitted + +# Unsupported target "state" with type "example" omitted + +# Unsupported target "tower_client" with type "example" omitted + +# Unsupported target "tower_server" with type "example" omitted + +# Unsupported target "upgrades" with type "example" omitted + +# Unsupported target "web_api" with type "example" omitted + +rust_library( + name = "hyper", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + "client", + "default", + "full", + "h2", + "http1", + "http2", + "runtime", + "server", + "socket2", + "stream", + "tcp", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.14.11", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + "@raze__futures_channel__0_3_16//:futures_channel", + "@raze__futures_core__0_3_16//:futures_core", + "@raze__futures_util__0_3_16//:futures_util", + "@raze__h2__0_3_3//:h2", + "@raze__http__0_2_4//:http", + "@raze__http_body__0_4_2//:http_body", + "@raze__httparse__1_4_1//:httparse", + "@raze__httpdate__1_0_1//:httpdate", + "@raze__itoa__0_4_7//:itoa", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__socket2__0_4_1//:socket2", + "@raze__tokio__1_9_0//:tokio", + "@raze__tower_service__0_3_1//:tower_service", + "@raze__tracing__0_1_26//:tracing", + "@raze__want__0_3_0//:want", + ] + selects.with_or({ + # cfg(any(target_os = "linux", target_os = "macos")) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + ], + "//conditions:default": [], + }), +) + +# Unsupported target "hyper" with type "staticlib" omitted + +# Unsupported target "client" with type "test" omitted + +# Unsupported target "integration" with type "test" omitted + +# Unsupported target "server" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel new file mode 100644 index 0000000..8581418 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.hyper-timeout-0.4.1.bazel @@ -0,0 +1,59 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "client" with type "example" omitted + +rust_library( + name = "hyper_timeout", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.1", + # buildifier: leave-alone + deps = [ + "@raze__hyper__0_14_11//:hyper", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__tokio__1_9_0//:tokio", + "@raze__tokio_io_timeout__1_1_1//:tokio_io_timeout", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.indexmap-1.7.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.indexmap-1.7.0.bazel new file mode 100644 index 0000000..fdabe53 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.indexmap-1.7.0.bazel @@ -0,0 +1,99 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "indexmap_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.7.0", + visibility = ["//visibility:private"], + deps = [ + "@raze__autocfg__1_0_1//:autocfg", + ], +) + +# Unsupported target "bench" with type "bench" omitted + +# Unsupported target "faststring" with type "bench" omitted + +rust_library( + name = "indexmap", + srcs = glob(["**/*.rs"]), + crate_features = [ + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.7.0", + # buildifier: leave-alone + deps = [ + ":indexmap_build_script", + "@raze__hashbrown__0_11_2//:hashbrown", + ], +) + +# Unsupported target "equivalent_trait" with type "test" omitted + +# Unsupported target "macros_full_path" with type "test" omitted + +# Unsupported target "quick" with type "test" omitted + +# Unsupported target "tests" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.itertools-0.10.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.itertools-0.10.1.bazel new file mode 100644 index 0000000..d423611 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.itertools-0.10.1.bazel @@ -0,0 +1,99 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "bench1" with type "bench" omitted + +# Unsupported target "combinations" with type "bench" omitted + +# Unsupported target "combinations_with_replacement" with type "bench" omitted + +# Unsupported target "fold_specialization" with type "bench" omitted + +# Unsupported target "powerset" with type "bench" omitted + +# Unsupported target "tree_fold1" with type "bench" omitted + +# Unsupported target "tuple_combinations" with type "bench" omitted + +# Unsupported target "tuples" with type "bench" omitted + +# Unsupported target "iris" with type "example" omitted + +rust_library( + name = "itertools", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "use_alloc", + "use_std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.10.1", + # buildifier: leave-alone + deps = [ + "@raze__either__1_6_1//:either", + ], +) + +# Unsupported target "adaptors_no_collect" with type "test" omitted + +# Unsupported target "flatten_ok" with type "test" omitted + +# Unsupported target "fold_specialization" with type "test" omitted + +# Unsupported target "macros_hygiene" with type "test" omitted + +# Unsupported target "merge_join" with type "test" omitted + +# Unsupported target "peeking_take_while" with type "test" omitted + +# Unsupported target "quick" with type "test" omitted + +# Unsupported target "specializations" with type "test" omitted + +# Unsupported target "test_core" with type "test" omitted + +# Unsupported target "test_std" with type "test" omitted + +# Unsupported target "tuples" with type "test" omitted + +# Unsupported target "zip" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.itoa-0.4.7.bazel b/rest-ratelimiter/cargo/remote/BUILD.itoa-0.4.7.bazel new file mode 100644 index 0000000..02b6378 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.itoa-0.4.7.bazel @@ -0,0 +1,59 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "bench" with type "bench" omitted + +rust_library( + name = "itoa", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.7", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "test" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.lazy_static-1.4.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.lazy_static-1.4.0.bazel new file mode 100644 index 0000000..9244397 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.lazy_static-1.4.0.bazel @@ -0,0 +1,57 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "lazy_static", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.4.0", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "no_std" with type "test" omitted + +# Unsupported target "test" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.libc-0.2.98.bazel b/rest-ratelimiter/cargo/remote/BUILD.libc-0.2.98.bazel new file mode 100644 index 0000000..4560d94 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.libc-0.2.98.bazel @@ -0,0 +1,89 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "libc_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.98", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "libc", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.98", + # buildifier: leave-alone + deps = [ + ":libc_build_script", + ], +) + +# Unsupported target "const_fn" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.log-0.4.14.bazel b/rest-ratelimiter/cargo/remote/BUILD.log-0.4.14.bazel new file mode 100644 index 0000000..14ae0e8 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.log-0.4.14.bazel @@ -0,0 +1,90 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "log_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.14", + visibility = ["//visibility:private"], + deps = [ + ], +) + +# Unsupported target "value" with type "bench" omitted + +rust_library( + name = "log", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.14", + # buildifier: leave-alone + deps = [ + ":log_build_script", + "@raze__cfg_if__1_0_0//:cfg_if", + ], +) + +# Unsupported target "filters" with type "test" omitted + +# Unsupported target "macros" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.memchr-2.4.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.memchr-2.4.0.bazel new file mode 100644 index 0000000..16750c6 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.memchr-2.4.0.bazel @@ -0,0 +1,87 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "unencumbered", # Unlicense from expression "Unlicense OR MIT" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "memchr_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "2.4.0", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "memchr", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "2.4.0", + # buildifier: leave-alone + deps = [ + ":memchr_build_script", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.mio-0.7.13.bazel b/rest-ratelimiter/cargo/remote/BUILD.mio-0.7.13.bazel new file mode 100644 index 0000000..6b3048e --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.mio-0.7.13.bazel @@ -0,0 +1,102 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "tcp_server" with type "example" omitted + +# Unsupported target "udp_server" with type "example" omitted + +rust_library( + name = "mio", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + "default", + "net", + "os-ext", + "os-poll", + "os-util", + "tcp", + "udp", + "uds", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.7.13", + # buildifier: leave-alone + deps = [ + "@raze__log__0_4_14//:log", + ] + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + "@raze__libc__0_2_98//:libc", + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + "@raze__miow__0_3_7//:miow", + "@raze__ntapi__0_3_6//:ntapi", + "@raze__winapi__0_3_9//:winapi", + ], + "//conditions:default": [], + }), +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.miow-0.3.7.bazel b/rest-ratelimiter/cargo/remote/BUILD.miow-0.3.7.bazel new file mode 100644 index 0000000..9587800 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.miow-0.3.7.bazel @@ -0,0 +1,54 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "miow", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.7", + # buildifier: leave-alone + deps = [ + "@raze__winapi__0_3_9//:winapi", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.multimap-0.8.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.multimap-0.8.3.bazel new file mode 100644 index 0000000..0ebc189 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.multimap-0.8.3.bazel @@ -0,0 +1,53 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "multimap", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.3", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.ntapi-0.3.6.bazel b/rest-ratelimiter/cargo/remote/BUILD.ntapi-0.3.6.bazel new file mode 100644 index 0000000..a13be77 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.ntapi-0.3.6.bazel @@ -0,0 +1,88 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "ntapi_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "user", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.6", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "ntapi", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "user", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.6", + # buildifier: leave-alone + deps = [ + ":ntapi_build_script", + "@raze__winapi__0_3_9//:winapi", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.num_cpus-1.13.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.num_cpus-1.13.0.bazel new file mode 100644 index 0000000..4d0e718 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.num_cpus-1.13.0.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "values" with type "example" omitted + +rust_library( + name = "num_cpus", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.13.0", + # buildifier: leave-alone + deps = [ + "@raze__libc__0_2_98//:libc", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.percent-encoding-2.1.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.percent-encoding-2.1.0.bazel new file mode 100644 index 0000000..81d763f --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.percent-encoding-2.1.0.bazel @@ -0,0 +1,53 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "percent_encoding", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "2.1.0", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.petgraph-0.5.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.petgraph-0.5.1.bazel new file mode 100644 index 0000000..c72ddb8 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.petgraph-0.5.1.bazel @@ -0,0 +1,79 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "dijkstra" with type "bench" omitted + +# Unsupported target "iso" with type "bench" omitted + +# Unsupported target "matrix_graph" with type "bench" omitted + +# Unsupported target "ograph" with type "bench" omitted + +# Unsupported target "stable_graph" with type "bench" omitted + +# Unsupported target "unionfind" with type "bench" omitted + +rust_library( + name = "petgraph", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.5.1", + # buildifier: leave-alone + deps = [ + "@raze__fixedbitset__0_2_0//:fixedbitset", + "@raze__indexmap__1_7_0//:indexmap", + ], +) + +# Unsupported target "graph" with type "test" omitted + +# Unsupported target "graphmap" with type "test" omitted + +# Unsupported target "iso" with type "test" omitted + +# Unsupported target "quickcheck" with type "test" omitted + +# Unsupported target "stable_graph" with type "test" omitted + +# Unsupported target "unionfind" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.pin-project-1.0.8.bazel b/rest-ratelimiter/cargo/remote/BUILD.pin-project-1.0.8.bazel new file mode 100644 index 0000000..035e9b6 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.pin-project-1.0.8.bazel @@ -0,0 +1,100 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +# Unsupported target "enum-default" with type "example" omitted + +# Unsupported target "enum-default-expanded" with type "example" omitted + +# Unsupported target "not_unpin" with type "example" omitted + +# Unsupported target "not_unpin-expanded" with type "example" omitted + +# Unsupported target "pinned_drop" with type "example" omitted + +# Unsupported target "pinned_drop-expanded" with type "example" omitted + +# Unsupported target "project_replace" with type "example" omitted + +# Unsupported target "project_replace-expanded" with type "example" omitted + +# Unsupported target "struct-default" with type "example" omitted + +# Unsupported target "struct-default-expanded" with type "example" omitted + +# Unsupported target "unsafe_unpin" with type "example" omitted + +# Unsupported target "unsafe_unpin-expanded" with type "example" omitted + +rust_library( + name = "pin_project", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + proc_macro_deps = [ + "@raze__pin_project_internal__1_0_8//:pin_project_internal", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.8", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "cfg" with type "test" omitted + +# Unsupported target "compiletest" with type "test" omitted + +# Unsupported target "drop_order" with type "test" omitted + +# Unsupported target "expandtest" with type "test" omitted + +# Unsupported target "lint" with type "test" omitted + +# Unsupported target "pin_project" with type "test" omitted + +# Unsupported target "pinned_drop" with type "test" omitted + +# Unsupported target "proper_unpin" with type "test" omitted + +# Unsupported target "repr_packed" with type "test" omitted + +# Unsupported target "unsafe_unpin" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.pin-project-internal-1.0.8.bazel b/rest-ratelimiter/cargo/remote/BUILD.pin-project-internal-1.0.8.bazel new file mode 100644 index 0000000..21181e1 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.pin-project-internal-1.0.8.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +rust_library( + name = "pin_project_internal", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "proc-macro", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.8", + # buildifier: leave-alone + deps = [ + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel b/rest-ratelimiter/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel new file mode 100644 index 0000000..60775d7 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel @@ -0,0 +1,65 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" +]) + +# Generated Targets + +rust_library( + name = "pin_project_lite", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.7", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "compiletest" with type "test" omitted + +# Unsupported target "drop_order" with type "test" omitted + +# Unsupported target "expandtest" with type "test" omitted + +# Unsupported target "lint" with type "test" omitted + +# Unsupported target "proper_unpin" with type "test" omitted + +# Unsupported target "test" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.pin-utils-0.1.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.pin-utils-0.1.0.bazel new file mode 100644 index 0000000..504844e --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.pin-utils-0.1.0.bazel @@ -0,0 +1,57 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "pin_utils", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.0", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "projection" with type "test" omitted + +# Unsupported target "stack_pin" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.ppv-lite86-0.2.10.bazel b/rest-ratelimiter/cargo/remote/BUILD.ppv-lite86-0.2.10.bazel new file mode 100644 index 0000000..f41d763 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.ppv-lite86-0.2.10.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "ppv_lite86", + srcs = glob(["**/*.rs"]), + crate_features = [ + "simd", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.10", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.proc-macro2-1.0.28.bazel b/rest-ratelimiter/cargo/remote/BUILD.proc-macro2-1.0.28.bazel new file mode 100644 index 0000000..23fd317 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.proc-macro2-1.0.28.bazel @@ -0,0 +1,98 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "proc_macro2_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "proc-macro", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.28", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "proc_macro2", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "proc-macro", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.28", + # buildifier: leave-alone + deps = [ + ":proc_macro2_build_script", + "@raze__unicode_xid__0_2_2//:unicode_xid", + ], +) + +# Unsupported target "comments" with type "test" omitted + +# Unsupported target "features" with type "test" omitted + +# Unsupported target "marker" with type "test" omitted + +# Unsupported target "test" with type "test" omitted + +# Unsupported target "test_fmt" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.prost-0.8.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.prost-0.8.0.bazel new file mode 100644 index 0000000..9d55e61 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.prost-0.8.0.bazel @@ -0,0 +1,62 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "varint" with type "bench" omitted + +rust_library( + name = "prost", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "prost-derive", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + proc_macro_deps = [ + "@raze__prost_derive__0_8_0//:prost_derive", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.0", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.prost-build-0.8.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.prost-build-0.8.0.bazel new file mode 100644 index 0000000..9303d03 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.prost-build-0.8.0.bazel @@ -0,0 +1,93 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "prost_build_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.0", + visibility = ["//visibility:private"], + deps = [ + "@raze__which__4_2_2//:which", + ], +) + +rust_library( + name = "prost_build", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.0", + # buildifier: leave-alone + deps = [ + ":prost_build_build_script", + "@raze__bytes__1_0_1//:bytes", + "@raze__heck__0_3_3//:heck", + "@raze__itertools__0_10_1//:itertools", + "@raze__log__0_4_14//:log", + "@raze__multimap__0_8_3//:multimap", + "@raze__petgraph__0_5_1//:petgraph", + "@raze__prost__0_8_0//:prost", + "@raze__prost_types__0_8_0//:prost_types", + "@raze__tempfile__3_2_0//:tempfile", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.prost-derive-0.8.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.prost-derive-0.8.0.bazel new file mode 100644 index 0000000..86cbcb5 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.prost-derive-0.8.0.bazel @@ -0,0 +1,58 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "prost_derive", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "proc-macro", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.0", + # buildifier: leave-alone + deps = [ + "@raze__anyhow__1_0_42//:anyhow", + "@raze__itertools__0_10_1//:itertools", + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.prost-types-0.8.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.prost-types-0.8.0.bazel new file mode 100644 index 0000000..2c4c636 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.prost-types-0.8.0.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "prost_types", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.0", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + "@raze__prost__0_8_0//:prost", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.quote-1.0.9.bazel b/rest-ratelimiter/cargo/remote/BUILD.quote-1.0.9.bazel new file mode 100644 index 0000000..f2bf472 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.quote-1.0.9.bazel @@ -0,0 +1,60 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "quote", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "proc-macro", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.9", + # buildifier: leave-alone + deps = [ + "@raze__proc_macro2__1_0_28//:proc_macro2", + ], +) + +# Unsupported target "compiletest" with type "test" omitted + +# Unsupported target "test" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.rand-0.8.4.bazel b/rest-ratelimiter/cargo/remote/BUILD.rand-0.8.4.bazel new file mode 100644 index 0000000..92eb1ab --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.rand-0.8.4.bazel @@ -0,0 +1,89 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "rand", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + "alloc", + "default", + "getrandom", + "libc", + "rand_chacha", + "rand_hc", + "small_rng", + "std", + "std_rng", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.4", + # buildifier: leave-alone + deps = [ + "@raze__rand_chacha__0_3_1//:rand_chacha", + "@raze__rand_core__0_6_3//:rand_core", + ] + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + "@raze__libc__0_2_98//:libc", + ], + "//conditions:default": [], + }), +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.rand_chacha-0.3.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.rand_chacha-0.3.1.bazel new file mode 100644 index 0000000..d827492 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.rand_chacha-0.3.1.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "rand_chacha", + srcs = glob(["**/*.rs"]), + crate_features = [ + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.1", + # buildifier: leave-alone + deps = [ + "@raze__ppv_lite86__0_2_10//:ppv_lite86", + "@raze__rand_core__0_6_3//:rand_core", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.rand_core-0.6.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.rand_core-0.6.3.bazel new file mode 100644 index 0000000..78acd1c --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.rand_core-0.6.3.bazel @@ -0,0 +1,57 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "rand_core", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + "getrandom", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.6.3", + # buildifier: leave-alone + deps = [ + "@raze__getrandom__0_2_3//:getrandom", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.rand_hc-0.3.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.rand_hc-0.3.1.bazel new file mode 100644 index 0000000..b8491c9 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.rand_hc-0.3.1.bazel @@ -0,0 +1,54 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "rand_hc", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.1", + # buildifier: leave-alone + deps = [ + "@raze__rand_core__0_6_3//:rand_core", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.redox_syscall-0.2.10.bazel b/rest-ratelimiter/cargo/remote/BUILD.redox_syscall-0.2.10.bazel new file mode 100644 index 0000000..5019fc3 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.redox_syscall-0.2.10.bazel @@ -0,0 +1,63 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +alias( + name = "redox_syscall", + actual = ":syscall", + tags = [ + "cargo-raze", + "manual", + ], +) + +rust_library( + name = "syscall", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.10", + # buildifier: leave-alone + deps = [ + "@raze__bitflags__1_2_1//:bitflags", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel new file mode 100644 index 0000000..19a7664 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel @@ -0,0 +1,64 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "remove_dir_all", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.5.3", + # buildifier: leave-alone + deps = [ + ] + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + "@raze__winapi__0_3_9//:winapi", + ], + "//conditions:default": [], + }), +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.slab-0.4.4.bazel b/rest-ratelimiter/cargo/remote/BUILD.slab-0.4.4.bazel new file mode 100644 index 0000000..6bb4cd4 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.slab-0.4.4.bazel @@ -0,0 +1,59 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "slab", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.4", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "serde" with type "test" omitted + +# Unsupported target "slab" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.socket2-0.4.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.socket2-0.4.1.bazel new file mode 100644 index 0000000..161f223 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.socket2-0.4.1.bazel @@ -0,0 +1,87 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "socket2", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.1", + # buildifier: leave-alone + deps = [ + ] + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + "@raze__libc__0_2_98//:libc", + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + "@raze__winapi__0_3_9//:winapi", + ], + "//conditions:default": [], + }), +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.syn-1.0.74.bazel b/rest-ratelimiter/cargo/remote/BUILD.syn-1.0.74.bazel new file mode 100644 index 0000000..7b3269f --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.syn-1.0.74.bazel @@ -0,0 +1,164 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "syn_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit", + "visit-mut", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.74", + visibility = ["//visibility:private"], + deps = [ + ], +) + +# Unsupported target "file" with type "bench" omitted + +# Unsupported target "rust" with type "bench" omitted + +rust_library( + name = "syn", + srcs = glob(["**/*.rs"]), + crate_features = [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit", + "visit-mut", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.0.74", + # buildifier: leave-alone + deps = [ + ":syn_build_script", + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__unicode_xid__0_2_2//:unicode_xid", + ], +) + +# Unsupported target "test_asyncness" with type "test" omitted + +# Unsupported target "test_attribute" with type "test" omitted + +# Unsupported target "test_derive_input" with type "test" omitted + +# Unsupported target "test_expr" with type "test" omitted + +# Unsupported target "test_generics" with type "test" omitted + +# Unsupported target "test_grouping" with type "test" omitted + +# Unsupported target "test_ident" with type "test" omitted + +# Unsupported target "test_item" with type "test" omitted + +# Unsupported target "test_iterators" with type "test" omitted + +# Unsupported target "test_lit" with type "test" omitted + +# Unsupported target "test_meta" with type "test" omitted + +# Unsupported target "test_parse_buffer" with type "test" omitted + +# Unsupported target "test_parse_stream" with type "test" omitted + +# Unsupported target "test_pat" with type "test" omitted + +# Unsupported target "test_path" with type "test" omitted + +# Unsupported target "test_precedence" with type "test" omitted + +# Unsupported target "test_receiver" with type "test" omitted + +# Unsupported target "test_round_trip" with type "test" omitted + +# Unsupported target "test_shebang" with type "test" omitted + +# Unsupported target "test_should_parse" with type "test" omitted + +# Unsupported target "test_size" with type "test" omitted + +# Unsupported target "test_stmt" with type "test" omitted + +# Unsupported target "test_token_trees" with type "test" omitted + +# Unsupported target "test_ty" with type "test" omitted + +# Unsupported target "test_visibility" with type "test" omitted + +# Unsupported target "zzz_stable" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tempfile-3.2.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.tempfile-3.2.0.bazel new file mode 100644 index 0000000..43816c9 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tempfile-3.2.0.bazel @@ -0,0 +1,98 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "tempfile", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "3.2.0", + # buildifier: leave-alone + deps = [ + "@raze__cfg_if__1_0_0//:cfg_if", + "@raze__rand__0_8_4//:rand", + "@raze__remove_dir_all__0_5_3//:remove_dir_all", + ] + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + "@raze__libc__0_2_98//:libc", + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + "@raze__winapi__0_3_9//:winapi", + ], + "//conditions:default": [], + }), +) + +# Unsupported target "namedtempfile" with type "test" omitted + +# Unsupported target "spooled" with type "test" omitted + +# Unsupported target "tempdir" with type "test" omitted + +# Unsupported target "tempfile" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tokio-1.9.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.tokio-1.9.0.bazel new file mode 100644 index 0000000..54377bf --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tokio-1.9.0.bazel @@ -0,0 +1,386 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "tokio_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "bytes", + "default", + "io-std", + "io-util", + "libc", + "macros", + "memchr", + "mio", + "net", + "num_cpus", + "rt", + "rt-multi-thread", + "sync", + "time", + "tokio-macros", + "winapi", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.9.0", + visibility = ["//visibility:private"], + deps = [ + "@raze__autocfg__1_0_1//:autocfg", + ] + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + ], + "//conditions:default": [], + }), +) + +rust_library( + name = "tokio", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + "bytes", + "default", + "io-std", + "io-util", + "libc", + "macros", + "memchr", + "mio", + "net", + "num_cpus", + "rt", + "rt-multi-thread", + "sync", + "time", + "tokio-macros", + "winapi", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + proc_macro_deps = [ + "@raze__tokio_macros__1_3_0//:tokio_macros", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.9.0", + # buildifier: leave-alone + deps = [ + ":tokio_build_script", + "@raze__bytes__1_0_1//:bytes", + "@raze__memchr__2_4_0//:memchr", + "@raze__mio__0_7_13//:mio", + "@raze__num_cpus__1_13_0//:num_cpus", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + ] + selects.with_or({ + # cfg(unix) + ( + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + ): [ + "@raze__libc__0_2_98//:libc", + ], + "//conditions:default": [], + }) + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + "@raze__winapi__0_3_9//:winapi", + ], + "//conditions:default": [], + }), +) + +# Unsupported target "_require_full" with type "test" omitted + +# Unsupported target "async_send_sync" with type "test" omitted + +# Unsupported target "buffered" with type "test" omitted + +# Unsupported target "fs" with type "test" omitted + +# Unsupported target "fs_copy" with type "test" omitted + +# Unsupported target "fs_dir" with type "test" omitted + +# Unsupported target "fs_file" with type "test" omitted + +# Unsupported target "fs_file_mocked" with type "test" omitted + +# Unsupported target "fs_link" with type "test" omitted + +# Unsupported target "io_async_fd" with type "test" omitted + +# Unsupported target "io_async_read" with type "test" omitted + +# Unsupported target "io_buf_reader" with type "test" omitted + +# Unsupported target "io_buf_writer" with type "test" omitted + +# Unsupported target "io_chain" with type "test" omitted + +# Unsupported target "io_copy" with type "test" omitted + +# Unsupported target "io_copy_bidirectional" with type "test" omitted + +# Unsupported target "io_driver" with type "test" omitted + +# Unsupported target "io_driver_drop" with type "test" omitted + +# Unsupported target "io_lines" with type "test" omitted + +# Unsupported target "io_mem_stream" with type "test" omitted + +# Unsupported target "io_read" with type "test" omitted + +# Unsupported target "io_read_buf" with type "test" omitted + +# Unsupported target "io_read_exact" with type "test" omitted + +# Unsupported target "io_read_line" with type "test" omitted + +# Unsupported target "io_read_to_end" with type "test" omitted + +# Unsupported target "io_read_to_string" with type "test" omitted + +# Unsupported target "io_read_until" with type "test" omitted + +# Unsupported target "io_split" with type "test" omitted + +# Unsupported target "io_take" with type "test" omitted + +# Unsupported target "io_write" with type "test" omitted + +# Unsupported target "io_write_all" with type "test" omitted + +# Unsupported target "io_write_all_buf" with type "test" omitted + +# Unsupported target "io_write_buf" with type "test" omitted + +# Unsupported target "io_write_int" with type "test" omitted + +# Unsupported target "macros_join" with type "test" omitted + +# Unsupported target "macros_pin" with type "test" omitted + +# Unsupported target "macros_select" with type "test" omitted + +# Unsupported target "macros_test" with type "test" omitted + +# Unsupported target "macros_try_join" with type "test" omitted + +# Unsupported target "named_pipe" with type "test" omitted + +# Unsupported target "net_bind_resource" with type "test" omitted + +# Unsupported target "net_lookup_host" with type "test" omitted + +# Unsupported target "no_rt" with type "test" omitted + +# Unsupported target "process_issue_2174" with type "test" omitted + +# Unsupported target "process_issue_42" with type "test" omitted + +# Unsupported target "process_kill_on_drop" with type "test" omitted + +# Unsupported target "process_smoke" with type "test" omitted + +# Unsupported target "rt_basic" with type "test" omitted + +# Unsupported target "rt_common" with type "test" omitted + +# Unsupported target "rt_handle_block_on" with type "test" omitted + +# Unsupported target "rt_threaded" with type "test" omitted + +# Unsupported target "signal_ctrl_c" with type "test" omitted + +# Unsupported target "signal_drop_recv" with type "test" omitted + +# Unsupported target "signal_drop_rt" with type "test" omitted + +# Unsupported target "signal_drop_signal" with type "test" omitted + +# Unsupported target "signal_multi_rt" with type "test" omitted + +# Unsupported target "signal_no_rt" with type "test" omitted + +# Unsupported target "signal_notify_both" with type "test" omitted + +# Unsupported target "signal_twice" with type "test" omitted + +# Unsupported target "signal_usr1" with type "test" omitted + +# Unsupported target "sync_barrier" with type "test" omitted + +# Unsupported target "sync_broadcast" with type "test" omitted + +# Unsupported target "sync_errors" with type "test" omitted + +# Unsupported target "sync_mpsc" with type "test" omitted + +# Unsupported target "sync_mutex" with type "test" omitted + +# Unsupported target "sync_mutex_owned" with type "test" omitted + +# Unsupported target "sync_notify" with type "test" omitted + +# Unsupported target "sync_once_cell" with type "test" omitted + +# Unsupported target "sync_oneshot" with type "test" omitted + +# Unsupported target "sync_rwlock" with type "test" omitted + +# Unsupported target "sync_semaphore" with type "test" omitted + +# Unsupported target "sync_semaphore_owned" with type "test" omitted + +# Unsupported target "sync_watch" with type "test" omitted + +# Unsupported target "task_abort" with type "test" omitted + +# Unsupported target "task_blocking" with type "test" omitted + +# Unsupported target "task_builder" with type "test" omitted + +# Unsupported target "task_local" with type "test" omitted + +# Unsupported target "task_local_set" with type "test" omitted + +# Unsupported target "tcp_accept" with type "test" omitted + +# Unsupported target "tcp_connect" with type "test" omitted + +# Unsupported target "tcp_echo" with type "test" omitted + +# Unsupported target "tcp_into_split" with type "test" omitted + +# Unsupported target "tcp_into_std" with type "test" omitted + +# Unsupported target "tcp_peek" with type "test" omitted + +# Unsupported target "tcp_shutdown" with type "test" omitted + +# Unsupported target "tcp_socket" with type "test" omitted + +# Unsupported target "tcp_split" with type "test" omitted + +# Unsupported target "tcp_stream" with type "test" omitted + +# Unsupported target "test_clock" with type "test" omitted + +# Unsupported target "time_interval" with type "test" omitted + +# Unsupported target "time_pause" with type "test" omitted + +# Unsupported target "time_rt" with type "test" omitted + +# Unsupported target "time_sleep" with type "test" omitted + +# Unsupported target "time_timeout" with type "test" omitted + +# Unsupported target "udp" with type "test" omitted + +# Unsupported target "uds_cred" with type "test" omitted + +# Unsupported target "uds_datagram" with type "test" omitted + +# Unsupported target "uds_split" with type "test" omitted + +# Unsupported target "uds_stream" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel new file mode 100644 index 0000000..89f294a --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tokio-io-timeout-1.1.1.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "tokio_io_timeout", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.1.1", + # buildifier: leave-alone + deps = [ + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__tokio__1_9_0//:tokio", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.tokio-macros-1.3.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.tokio-macros-1.3.0.bazel new file mode 100644 index 0000000..8d2b65f --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tokio-macros-1.3.0.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tokio_macros", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "proc-macro", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.3.0", + # buildifier: leave-alone + deps = [ + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.tokio-stream-0.1.7.bazel b/rest-ratelimiter/cargo/remote/BUILD.tokio-stream-0.1.7.bazel new file mode 100644 index 0000000..fd59ebf --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tokio-stream-0.1.7.bazel @@ -0,0 +1,84 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tokio_stream", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "time", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.7", + # buildifier: leave-alone + deps = [ + "@raze__futures_core__0_3_16//:futures_core", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__tokio__1_9_0//:tokio", + ], +) + +# Unsupported target "async_send_sync" with type "test" omitted + +# Unsupported target "stream_chain" with type "test" omitted + +# Unsupported target "stream_collect" with type "test" omitted + +# Unsupported target "stream_empty" with type "test" omitted + +# Unsupported target "stream_fuse" with type "test" omitted + +# Unsupported target "stream_iter" with type "test" omitted + +# Unsupported target "stream_merge" with type "test" omitted + +# Unsupported target "stream_once" with type "test" omitted + +# Unsupported target "stream_pending" with type "test" omitted + +# Unsupported target "stream_stream_map" with type "test" omitted + +# Unsupported target "stream_timeout" with type "test" omitted + +# Unsupported target "time_throttle" with type "test" omitted + +# Unsupported target "watch" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tokio-util-0.6.7.bazel b/rest-ratelimiter/cargo/remote/BUILD.tokio-util-0.6.7.bazel new file mode 100644 index 0000000..0aa4436 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tokio-util-0.6.7.bazel @@ -0,0 +1,91 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tokio_util", + srcs = glob(["**/*.rs"]), + crate_features = [ + "codec", + "default", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.6.7", + # buildifier: leave-alone + deps = [ + "@raze__bytes__1_0_1//:bytes", + "@raze__futures_core__0_3_16//:futures_core", + "@raze__futures_sink__0_3_16//:futures_sink", + "@raze__log__0_4_14//:log", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__tokio__1_9_0//:tokio", + ], +) + +# Unsupported target "_require_full" with type "test" omitted + +# Unsupported target "codecs" with type "test" omitted + +# Unsupported target "context" with type "test" omitted + +# Unsupported target "framed" with type "test" omitted + +# Unsupported target "framed_read" with type "test" omitted + +# Unsupported target "framed_write" with type "test" omitted + +# Unsupported target "io_reader_stream" with type "test" omitted + +# Unsupported target "io_stream_reader" with type "test" omitted + +# Unsupported target "length_delimited" with type "test" omitted + +# Unsupported target "mpsc" with type "test" omitted + +# Unsupported target "poll_semaphore" with type "test" omitted + +# Unsupported target "reusable_box" with type "test" omitted + +# Unsupported target "sync_cancellation_token" with type "test" omitted + +# Unsupported target "time_delay_queue" with type "test" omitted + +# Unsupported target "udp" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tonic-0.5.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.tonic-0.5.0.bazel new file mode 100644 index 0000000..37de912 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tonic-0.5.0.bazel @@ -0,0 +1,96 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "decode" with type "bench" omitted + +rust_library( + name = "tonic", + srcs = glob(["**/*.rs"]), + aliases = { + "@raze__prost__0_8_0//:prost": "prost1", + }, + crate_features = [ + "async-trait", + "codegen", + "default", + "h2", + "hyper", + "hyper-timeout", + "prost", + "prost-derive", + "prost1", + "tokio", + "tower", + "tracing-futures", + "transport", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + proc_macro_deps = [ + "@raze__async_trait__0_1_51//:async_trait", + "@raze__prost_derive__0_8_0//:prost_derive", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.5.0", + # buildifier: leave-alone + deps = [ + "@raze__async_stream__0_3_2//:async_stream", + "@raze__base64__0_13_0//:base64", + "@raze__bytes__1_0_1//:bytes", + "@raze__futures_core__0_3_16//:futures_core", + "@raze__futures_util__0_3_16//:futures_util", + "@raze__h2__0_3_3//:h2", + "@raze__http__0_2_4//:http", + "@raze__http_body__0_4_2//:http_body", + "@raze__hyper__0_14_11//:hyper", + "@raze__hyper_timeout__0_4_1//:hyper_timeout", + "@raze__percent_encoding__2_1_0//:percent_encoding", + "@raze__pin_project__1_0_8//:pin_project", + "@raze__prost__0_8_0//:prost", + "@raze__tokio__1_9_0//:tokio", + "@raze__tokio_stream__0_1_7//:tokio_stream", + "@raze__tokio_util__0_6_7//:tokio_util", + "@raze__tower__0_4_8//:tower", + "@raze__tower_layer__0_3_1//:tower_layer", + "@raze__tower_service__0_3_1//:tower_service", + "@raze__tracing__0_1_26//:tracing", + "@raze__tracing_futures__0_2_5//:tracing_futures", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.tonic-build-0.5.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.tonic-build-0.5.1.bazel new file mode 100644 index 0000000..ff8966f --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tonic-build-0.5.1.bazel @@ -0,0 +1,62 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tonic_build", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "prost", + "prost-build", + "rustfmt", + "transport", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.5.1", + # buildifier: leave-alone + deps = [ + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__prost_build__0_8_0//:prost_build", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.tower-0.4.8.bazel b/rest-ratelimiter/cargo/remote/BUILD.tower-0.4.8.bazel new file mode 100644 index 0000000..aa030de --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tower-0.4.8.bazel @@ -0,0 +1,110 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "tower-balance" with type "example" omitted + +rust_library( + name = "tower", + srcs = glob(["**/*.rs"]), + crate_features = [ + "balance", + "buffer", + "default", + "discover", + "futures-util", + "indexmap", + "limit", + "load", + "log", + "make", + "rand", + "ready-cache", + "slab", + "timeout", + "tokio", + "tokio-stream", + "tokio-util", + "tracing", + "util", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.8", + # buildifier: leave-alone + deps = [ + "@raze__futures_core__0_3_16//:futures_core", + "@raze__futures_util__0_3_16//:futures_util", + "@raze__indexmap__1_7_0//:indexmap", + "@raze__pin_project__1_0_8//:pin_project", + "@raze__rand__0_8_4//:rand", + "@raze__slab__0_4_4//:slab", + "@raze__tokio__1_9_0//:tokio", + "@raze__tokio_stream__0_1_7//:tokio_stream", + "@raze__tokio_util__0_6_7//:tokio_util", + "@raze__tower_layer__0_3_1//:tower_layer", + "@raze__tower_service__0_3_1//:tower_service", + "@raze__tracing__0_1_26//:tracing", + ], +) + +# Unsupported target "balance" with type "test" omitted + +# Unsupported target "buffer" with type "test" omitted + +# Unsupported target "builder" with type "test" omitted + +# Unsupported target "hedge" with type "test" omitted + +# Unsupported target "limit" with type "test" omitted + +# Unsupported target "load_shed" with type "test" omitted + +# Unsupported target "ready_cache" with type "test" omitted + +# Unsupported target "retry" with type "test" omitted + +# Unsupported target "spawn_ready" with type "test" omitted + +# Unsupported target "steer" with type "test" omitted + +# Unsupported target "support" with type "test" omitted + +# Unsupported target "util" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tower-layer-0.3.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.tower-layer-0.3.1.bazel new file mode 100644 index 0000000..6ab92ca --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tower-layer-0.3.1.bazel @@ -0,0 +1,53 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tower_layer", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.1", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.tower-service-0.3.1.bazel b/rest-ratelimiter/cargo/remote/BUILD.tower-service-0.3.1.bazel new file mode 100644 index 0000000..1ae5d05 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tower-service-0.3.1.bazel @@ -0,0 +1,53 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tower_service", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.1", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.tracing-0.1.26.bazel b/rest-ratelimiter/cargo/remote/BUILD.tracing-0.1.26.bazel new file mode 100644 index 0000000..96b8bc1 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tracing-0.1.26.bazel @@ -0,0 +1,101 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "no_subscriber" with type "bench" omitted + +# Unsupported target "subscriber" with type "bench" omitted + +rust_library( + name = "tracing", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + "attributes", + "default", + "log", + "std", + "tracing-attributes", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + proc_macro_deps = [ + "@raze__tracing_attributes__0_1_15//:tracing_attributes", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.26", + # buildifier: leave-alone + deps = [ + "@raze__cfg_if__1_0_0//:cfg_if", + "@raze__log__0_4_14//:log", + "@raze__pin_project_lite__0_2_7//:pin_project_lite", + "@raze__tracing_core__0_1_18//:tracing_core", + ] + selects.with_or({ + # cfg(target_arch = "wasm32") + ( + "@rules_rust//rust/platform:wasm32-unknown-unknown", + "@rules_rust//rust/platform:wasm32-wasi", + ): [ + ], + "//conditions:default": [], + }), +) + +# Unsupported target "event" with type "test" omitted + +# Unsupported target "filter_caching_is_lexically_scoped" with type "test" omitted + +# Unsupported target "filters_are_not_reevaluated_for_the_same_span" with type "test" omitted + +# Unsupported target "filters_are_reevaluated_for_different_call_sites" with type "test" omitted + +# Unsupported target "filters_dont_leak" with type "test" omitted + +# Unsupported target "macro_imports" with type "test" omitted + +# Unsupported target "macros" with type "test" omitted + +# Unsupported target "max_level_hint" with type "test" omitted + +# Unsupported target "multiple_max_level_hints" with type "test" omitted + +# Unsupported target "span" with type "test" omitted + +# Unsupported target "subscriber" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tracing-attributes-0.1.15.bazel b/rest-ratelimiter/cargo/remote/BUILD.tracing-attributes-0.1.15.bazel new file mode 100644 index 0000000..535f06a --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tracing-attributes-0.1.15.bazel @@ -0,0 +1,74 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tracing_attributes", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "proc-macro", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.15", + # buildifier: leave-alone + deps = [ + "@raze__proc_macro2__1_0_28//:proc_macro2", + "@raze__quote__1_0_9//:quote", + "@raze__syn__1_0_74//:syn", + ], +) + +# Unsupported target "async_fn" with type "test" omitted + +# Unsupported target "destructuring" with type "test" omitted + +# Unsupported target "err" with type "test" omitted + +# Unsupported target "fields" with type "test" omitted + +# Unsupported target "instrument" with type "test" omitted + +# Unsupported target "levels" with type "test" omitted + +# Unsupported target "names" with type "test" omitted + +# Unsupported target "support" with type "test" omitted + +# Unsupported target "targets" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tracing-core-0.1.18.bazel b/rest-ratelimiter/cargo/remote/BUILD.tracing-core-0.1.18.bazel new file mode 100644 index 0000000..0d7368c --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tracing-core-0.1.18.bazel @@ -0,0 +1,62 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tracing_core", + srcs = glob(["**/*.rs"]), + crate_features = [ + "lazy_static", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.1.18", + # buildifier: leave-alone + deps = [ + "@raze__lazy_static__1_4_0//:lazy_static", + ], +) + +# Unsupported target "dispatch" with type "test" omitted + +# Unsupported target "global_dispatch" with type "test" omitted + +# Unsupported target "macros" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.tracing-futures-0.2.5.bazel b/rest-ratelimiter/cargo/remote/BUILD.tracing-futures-0.2.5.bazel new file mode 100644 index 0000000..af918d1 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.tracing-futures-0.2.5.bazel @@ -0,0 +1,63 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "tracing_futures", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "pin-project", + "std", + "std-future", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.5", + # buildifier: leave-alone + deps = [ + "@raze__pin_project__1_0_8//:pin_project", + "@raze__tracing__0_1_26//:tracing", + ], +) + +# Unsupported target "std_future" with type "test" omitted + +# Unsupported target "support" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.try-lock-0.2.3.bazel b/rest-ratelimiter/cargo/remote/BUILD.try-lock-0.2.3.bazel new file mode 100644 index 0000000..f83bfb3 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.try-lock-0.2.3.bazel @@ -0,0 +1,53 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "try_lock", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.3", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.unicode-segmentation-1.8.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.unicode-segmentation-1.8.0.bazel new file mode 100644 index 0000000..048e0a4 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.unicode-segmentation-1.8.0.bazel @@ -0,0 +1,59 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "graphemes" with type "bench" omitted + +# Unsupported target "unicode_words" with type "bench" omitted + +# Unsupported target "word_bounds" with type "bench" omitted + +rust_library( + name = "unicode_segmentation", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.8.0", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.unicode-xid-0.2.2.bazel b/rest-ratelimiter/cargo/remote/BUILD.unicode-xid-0.2.2.bazel new file mode 100644 index 0000000..bd62306 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.unicode-xid-0.2.2.bazel @@ -0,0 +1,58 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "xid" with type "bench" omitted + +rust_library( + name = "unicode_xid", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.2.2", + # buildifier: leave-alone + deps = [ + ], +) + +# Unsupported target "exhaustive_tests" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.want-0.3.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.want-0.3.0.bazel new file mode 100644 index 0000000..490112e --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.want-0.3.0.bazel @@ -0,0 +1,57 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +# Unsupported target "throughput" with type "bench" omitted + +rust_library( + name = "want", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.0", + # buildifier: leave-alone + deps = [ + "@raze__log__0_4_14//:log", + "@raze__try_lock__0_2_3//:try_lock", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel b/rest-ratelimiter/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel new file mode 100644 index 0000000..9fb4938 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel @@ -0,0 +1,55 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # Apache-2.0 from expression "Apache-2.0 OR (Apache-2.0 OR MIT)" +]) + +# Generated Targets + +rust_library( + name = "wasi", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.10.2+wasi-snapshot-preview1", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.which-4.2.2.bazel b/rest-ratelimiter/cargo/remote/BUILD.which-4.2.2.bazel new file mode 100644 index 0000000..0c32895 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.which-4.2.2.bazel @@ -0,0 +1,68 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT" +]) + +# Generated Targets + +rust_library( + name = "which", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "4.2.2", + # buildifier: leave-alone + deps = [ + "@raze__either__1_6_1//:either", + "@raze__libc__0_2_98//:libc", + ] + selects.with_or({ + # cfg(windows) + ( + "@rules_rust//rust/platform:i686-pc-windows-msvc", + "@rules_rust//rust/platform:x86_64-pc-windows-msvc", + ): [ + "@raze__lazy_static__1_4_0//:lazy_static", + ], + "//conditions:default": [], + }), +) + +# Unsupported target "basic" with type "test" omitted diff --git a/rest-ratelimiter/cargo/remote/BUILD.winapi-0.3.9.bazel b/rest-ratelimiter/cargo/remote/BUILD.winapi-0.3.9.bazel new file mode 100644 index 0000000..2decd49 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.winapi-0.3.9.bazel @@ -0,0 +1,133 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "winapi_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "cfg", + "errhandlingapi", + "evntrace", + "fileapi", + "handleapi", + "in6addr", + "inaddr", + "ioapiset", + "minwinbase", + "minwindef", + "mstcpip", + "mswsock", + "namedpipeapi", + "ntdef", + "ntsecapi", + "std", + "synchapi", + "winbase", + "windef", + "winerror", + "winioctl", + "winsock2", + "ws2def", + "ws2ipdef", + "ws2tcpip", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.9", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "winapi", + srcs = glob(["**/*.rs"]), + crate_features = [ + "cfg", + "errhandlingapi", + "evntrace", + "fileapi", + "handleapi", + "in6addr", + "inaddr", + "ioapiset", + "minwinbase", + "minwindef", + "mstcpip", + "mswsock", + "namedpipeapi", + "ntdef", + "ntsecapi", + "std", + "synchapi", + "winbase", + "windef", + "winerror", + "winioctl", + "winsock2", + "ws2def", + "ws2ipdef", + "ws2tcpip", + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.3.9", + # buildifier: leave-alone + deps = [ + ":winapi_build_script", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel new file mode 100644 index 0000000..a8a1bb9 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -0,0 +1,83 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "winapi_i686_pc_windows_gnu_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.0", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "winapi_i686_pc_windows_gnu", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.0", + # buildifier: leave-alone + deps = [ + ":winapi_i686_pc_windows_gnu_build_script", + ], +) diff --git a/rest-ratelimiter/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/rest-ratelimiter/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel new file mode 100644 index 0000000..7f6c146 --- /dev/null +++ b/rest-ratelimiter/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -0,0 +1,83 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:rust.bzl", + "rust_binary", + "rust_library", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//rest-ratelimiter/cargo", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "winapi_x86_64_pc_windows_gnu_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.0", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "winapi_x86_64_pc_windows_gnu", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + crate_type = "lib", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.4.0", + # buildifier: leave-alone + deps = [ + ":winapi_x86_64_pc_windows_gnu_build_script", + ], +) diff --git a/rest-ratelimiter/protos/nova.ratelimit.v1.proto b/rest-ratelimiter/proto/nova.ratelimit.v1.proto index 5f06392..b9a0d36 100644 --- a/rest-ratelimiter/protos/nova.ratelimit.v1.proto +++ b/rest-ratelimiter/proto/nova.ratelimit.v1.proto @@ -1,39 +1,39 @@ -// How does this works ? -// Every request, the proxy (envoy) requests the rate-limiting service if -// the requested route bucket or global rate-limit is hit. - -syntax = "proto3"; -package nova.ratelimit.v1; - -// The reponse of a RatelimitRequest, it includes the status of the reponse and -// the bucket informations. -message RatelimitResponse { - enum Status { - OK = 0; - RATELIMITED = 1; - GLOBAL_RATELIMITED = 2; - } - Status status = 1; - bool updateAsked = 2; -} - -// Requests the ratelimit status of a route request, it also takes the -// indentifiables of the request in question. -message RatelimitRequest { - string routeName = 1; - repeated string indentifiables = 2; -} - -// Used when "updateAsked" is sed to true -// this means the bucket is unknown to the ratelimit server. -message CreateBucketData { - RatelimitRequest request = 1; - int32 limit = 2; - int32 remaining = 3; - int32 reset = 4; -} - -service RatelimitService { - rpc GetRatelimitStatus (RatelimitRequest) returns (RatelimitResponse); - rpc CreateBucket (CreateBucketData) returns (CreateBucketData); +// How does this works ?
+// Every request, the proxy (envoy) requests the rate-limiting service if
+// the requested route bucket or global rate-limit is hit.
+
+syntax = "proto3";
+package nova.ratelimit.v1;
+
+// The reponse of a RatelimitRequest, it includes the status of the reponse and
+// the bucket informations.
+message RatelimitResponse {
+ enum Status {
+ OK = 0;
+ RATELIMITED = 1;
+ GLOBAL_RATELIMITED = 2;
+ }
+ Status status = 1;
+ bool updateAsked = 2;
+}
+
+// Requests the ratelimit status of a route request, it also takes the
+// indentifiables of the request in question.
+message RatelimitRequest {
+ string routeName = 1;
+ repeated string indentifiables = 2;
+}
+
+// Used when "updateAsked" is sed to true
+// this means the bucket is unknown to the ratelimit server.
+message CreateBucketData {
+ RatelimitRequest request = 1;
+ int32 limit = 2;
+ int32 remaining = 3;
+ int32 reset = 4;
+}
+
+service RatelimitService {
+ rpc GetRatelimitStatus (RatelimitRequest) returns (RatelimitResponse);
+ rpc CreateBucket (CreateBucketData) returns (CreateBucketData);
}
\ No newline at end of file diff --git a/rest-ratelimiter/protos/BUILD.bazel b/rest-ratelimiter/protos/BUILD.bazel deleted file mode 100644 index 6cd212a..0000000 --- a/rest-ratelimiter/protos/BUILD.bazel +++ /dev/null @@ -1,24 +0,0 @@ -load("@rules_proto//proto:defs.bzl", "proto_library") -load("@io_bazel_rules_go//go:def.bzl", "go_library") -load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") - -proto_library( - name = "nova_ratelimit_v1_proto", - srcs = ["nova.ratelimit.v1.proto"], - visibility = ["//visibility:public"], -) - -go_proto_library( - name = "nova_ratelimit_v1_go_proto", - compilers = ["@io_bazel_rules_go//proto:go_grpc"], - importpath = "github.com/discordnova/nova/rest-ratelimiter/protos", - proto = ":nova_ratelimit_v1_proto", - visibility = ["//visibility:public"], -) - -go_library( - name = "protos", - embed = [":nova_ratelimit_v1_go_proto"], - importpath = "github.com/discordnova/nova/rest-ratelimiter/protos", - visibility = ["//visibility:public"], -) diff --git a/rest-ratelimiter/src/main.rs b/rest-ratelimiter/src/main.rs index 09525bc..fbedd92 100644 --- a/rest-ratelimiter/src/main.rs +++ b/rest-ratelimiter/src/main.rs @@ -1,4 +1,3 @@ fn main() { - println!("Hello World!"); -} - + println!("Hello, world!"); +}
\ No newline at end of file |
