blob: df2d5eabd7a37a9ae25a1ba57ea497c21477fa71 [file] [log] [blame]
Adam Snaider1c095c92023-07-08 02:09:58 -04001###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6# bazel run @//wasm_bindgen/3rdparty:crates_vendor
7###############################################################################
8
9load("@rules_rust//rust:defs.bzl", "rust_library")
10
11package(default_visibility = ["//visibility:public"])
12
13# licenses([
14# "TODO", # MIT OR Apache-2.0
15# ])
16
17rust_library(
18 name = "percent_encoding",
19 srcs = glob(["**/*.rs"]),
20 compile_data = glob(
21 include = ["**"],
22 exclude = [
23 "**/* *",
24 ".tmp_git_root/**/*",
25 "BUILD",
26 "BUILD.bazel",
27 "WORKSPACE",
28 "WORKSPACE.bazel",
29 ],
30 ),
31 crate_features = [
32 "alloc",
33 "default",
34 ],
35 crate_root = "src/lib.rs",
36 edition = "2018",
37 rustc_flags = ["--cap-lints=allow"],
38 tags = [
39 "cargo-bazel",
40 "crate-name=percent-encoding",
41 "manual",
42 "noclippy",
43 "norustfmt",
44 ],
45 target_compatible_with = select({
46 "@rules_rust//rust/platform:aarch64-apple-darwin": [],
47 "@rules_rust//rust/platform:aarch64-apple-ios": [],
48 "@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
49 "@rules_rust//rust/platform:aarch64-fuchsia": [],
50 "@rules_rust//rust/platform:aarch64-linux-android": [],
51 "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
52 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
53 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
54 "@rules_rust//rust/platform:armv7-linux-androideabi": [],
55 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
56 "@rules_rust//rust/platform:i686-apple-darwin": [],
57 "@rules_rust//rust/platform:i686-linux-android": [],
58 "@rules_rust//rust/platform:i686-pc-windows-msvc": [],
59 "@rules_rust//rust/platform:i686-unknown-freebsd": [],
60 "@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
61 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
62 "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
63 "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
64 "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
65 "@rules_rust//rust/platform:thumbv7em-none-eabi": [],
66 "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
67 "@rules_rust//rust/platform:wasm32-unknown-unknown": [],
68 "@rules_rust//rust/platform:wasm32-wasi": [],
69 "@rules_rust//rust/platform:x86_64-apple-darwin": [],
70 "@rules_rust//rust/platform:x86_64-apple-ios": [],
71 "@rules_rust//rust/platform:x86_64-fuchsia": [],
72 "@rules_rust//rust/platform:x86_64-linux-android": [],
73 "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
74 "@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
75 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
76 "@rules_rust//rust/platform:x86_64-unknown-none": [],
77 "//conditions:default": ["@platforms//:incompatible"],
78 }),
79 version = "2.2.0",
80)