1############################################################################### 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//cargo:defs.bzl", "cargo_build_script") 10load("@rules_rust//rust:defs.bzl", "rust_library") 11 12package(default_visibility = ["//visibility:public"]) 13 14rust_library( 15 name = "serde_json", 16 srcs = glob( 17 include = ["**/*.rs"], 18 allow_empty = True, 19 ), 20 compile_data = glob( 21 include = ["**"], 22 allow_empty = True, 23 exclude = [ 24 "**/* *", 25 ".tmp_git_root/**/*", 26 "BUILD", 27 "BUILD.bazel", 28 "WORKSPACE", 29 "WORKSPACE.bazel", 30 ], 31 ), 32 crate_features = [ 33 "default", 34 "std", 35 ], 36 crate_root = "src/lib.rs", 37 edition = "2021", 38 rustc_flags = [ 39 "--cap-lints=allow", 40 ], 41 tags = [ 42 "cargo-bazel", 43 "crate-name=serde_json", 44 "manual", 45 "noclippy", 46 "norustfmt", 47 ], 48 target_compatible_with = select({ 49 "@rules_rust//rust/platform:aarch64-apple-darwin": [], 50 "@rules_rust//rust/platform:aarch64-apple-ios": [], 51 "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], 52 "@rules_rust//rust/platform:aarch64-fuchsia": [], 53 "@rules_rust//rust/platform:aarch64-linux-android": [], 54 "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], 55 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], 56 "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], 57 "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], 58 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], 59 "@rules_rust//rust/platform:armv7-linux-androideabi": [], 60 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], 61 "@rules_rust//rust/platform:i686-apple-darwin": [], 62 "@rules_rust//rust/platform:i686-linux-android": [], 63 "@rules_rust//rust/platform:i686-pc-windows-msvc": [], 64 "@rules_rust//rust/platform:i686-unknown-freebsd": [], 65 "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], 66 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], 67 "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], 68 "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], 69 "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], 70 "@rules_rust//rust/platform:thumbv7em-none-eabi": [], 71 "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], 72 "@rules_rust//rust/platform:wasm32-unknown-unknown": [], 73 "@rules_rust//rust/platform:wasm32-wasi": [], 74 "@rules_rust//rust/platform:x86_64-apple-darwin": [], 75 "@rules_rust//rust/platform:x86_64-apple-ios": [], 76 "@rules_rust//rust/platform:x86_64-fuchsia": [], 77 "@rules_rust//rust/platform:x86_64-linux-android": [], 78 "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], 79 "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], 80 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], 81 "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], 82 "@rules_rust//rust/platform:x86_64-unknown-none": [], 83 "//conditions:default": ["@platforms//:incompatible"], 84 }), 85 version = "1.0.102", 86 deps = [ 87 "@rules_rust_wasm_bindgen__itoa-1.0.8//:itoa", 88 "@rules_rust_wasm_bindgen__ryu-1.0.14//:ryu", 89 "@rules_rust_wasm_bindgen__serde-1.0.171//:serde", 90 "@rules_rust_wasm_bindgen__serde_json-1.0.102//:build_script_build", 91 ], 92) 93 94cargo_build_script( 95 name = "_bs", 96 srcs = glob( 97 include = ["**/*.rs"], 98 allow_empty = True, 99 ), 100 crate_features = [ 101 "default", 102 "std", 103 ], 104 crate_name = "build_script_build", 105 crate_root = "build.rs", 106 data = glob( 107 include = ["**"], 108 allow_empty = True, 109 exclude = [ 110 "**/* *", 111 ".tmp_git_root/**/*", 112 "BUILD", 113 "BUILD.bazel", 114 "WORKSPACE", 115 "WORKSPACE.bazel", 116 ], 117 ), 118 edition = "2021", 119 pkg_name = "serde_json", 120 rustc_flags = [ 121 "--cap-lints=allow", 122 ], 123 tags = [ 124 "cargo-bazel", 125 "crate-name=serde_json", 126 "manual", 127 "noclippy", 128 "norustfmt", 129 ], 130 version = "1.0.102", 131 visibility = ["//visibility:private"], 132) 133 134alias( 135 name = "build_script_build", 136 actual = ":_bs", 137 tags = ["manual"], 138) 139