1*d4726bddSHONG Yifan############################################################################### 2*d4726bddSHONG Yifan# @generated 3*d4726bddSHONG Yifan# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To 4*d4726bddSHONG Yifan# regenerate this file, run the following: 5*d4726bddSHONG Yifan# 6*d4726bddSHONG Yifan# bazel run @//bindgen/3rdparty:crates_vendor 7*d4726bddSHONG Yifan############################################################################### 8*d4726bddSHONG Yifan 9*d4726bddSHONG Yifanload("@rules_rust//rust:defs.bzl", "rust_library") 10*d4726bddSHONG Yifan 11*d4726bddSHONG Yifanpackage(default_visibility = ["//visibility:public"]) 12*d4726bddSHONG Yifan 13*d4726bddSHONG Yifanrust_library( 14*d4726bddSHONG Yifan name = "is_terminal", 15*d4726bddSHONG Yifan srcs = glob( 16*d4726bddSHONG Yifan include = ["**/*.rs"], 17*d4726bddSHONG Yifan allow_empty = True, 18*d4726bddSHONG Yifan ), 19*d4726bddSHONG Yifan compile_data = glob( 20*d4726bddSHONG Yifan include = ["**"], 21*d4726bddSHONG Yifan allow_empty = True, 22*d4726bddSHONG Yifan exclude = [ 23*d4726bddSHONG Yifan "**/* *", 24*d4726bddSHONG Yifan ".tmp_git_root/**/*", 25*d4726bddSHONG Yifan "BUILD", 26*d4726bddSHONG Yifan "BUILD.bazel", 27*d4726bddSHONG Yifan "WORKSPACE", 28*d4726bddSHONG Yifan "WORKSPACE.bazel", 29*d4726bddSHONG Yifan ], 30*d4726bddSHONG Yifan ), 31*d4726bddSHONG Yifan crate_root = "src/lib.rs", 32*d4726bddSHONG Yifan edition = "2018", 33*d4726bddSHONG Yifan rustc_flags = [ 34*d4726bddSHONG Yifan "--cap-lints=allow", 35*d4726bddSHONG Yifan ], 36*d4726bddSHONG Yifan tags = [ 37*d4726bddSHONG Yifan "cargo-bazel", 38*d4726bddSHONG Yifan "crate-name=is-terminal", 39*d4726bddSHONG Yifan "manual", 40*d4726bddSHONG Yifan "noclippy", 41*d4726bddSHONG Yifan "norustfmt", 42*d4726bddSHONG Yifan ], 43*d4726bddSHONG Yifan target_compatible_with = select({ 44*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-apple-darwin": [], 45*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-apple-ios": [], 46*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], 47*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-fuchsia": [], 48*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-linux-android": [], 49*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], 50*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], 51*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], 52*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], 53*d4726bddSHONG Yifan "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], 54*d4726bddSHONG Yifan "@rules_rust//rust/platform:armv7-linux-androideabi": [], 55*d4726bddSHONG Yifan "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], 56*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-apple-darwin": [], 57*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-linux-android": [], 58*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-pc-windows-msvc": [], 59*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-unknown-freebsd": [], 60*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], 61*d4726bddSHONG Yifan "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], 62*d4726bddSHONG Yifan "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], 63*d4726bddSHONG Yifan "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], 64*d4726bddSHONG Yifan "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], 65*d4726bddSHONG Yifan "@rules_rust//rust/platform:thumbv7em-none-eabi": [], 66*d4726bddSHONG Yifan "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], 67*d4726bddSHONG Yifan "@rules_rust//rust/platform:wasm32-unknown-unknown": [], 68*d4726bddSHONG Yifan "@rules_rust//rust/platform:wasm32-wasi": [], 69*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-apple-darwin": [], 70*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-apple-ios": [], 71*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-fuchsia": [], 72*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-linux-android": [], 73*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], 74*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], 75*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], 76*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], 77*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-none": [], 78*d4726bddSHONG Yifan "//conditions:default": ["@platforms//:incompatible"], 79*d4726bddSHONG Yifan }), 80*d4726bddSHONG Yifan version = "0.4.7", 81*d4726bddSHONG Yifan deps = [ 82*d4726bddSHONG Yifan "@rules_rust_bindgen__io-lifetimes-1.0.11//:io_lifetimes", 83*d4726bddSHONG Yifan ] + select({ 84*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-apple-darwin": [ 85*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 86*d4726bddSHONG Yifan ], 87*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-apple-ios": [ 88*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 89*d4726bddSHONG Yifan ], 90*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ 91*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 92*d4726bddSHONG Yifan ], 93*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-fuchsia": [ 94*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 95*d4726bddSHONG Yifan ], 96*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-linux-android": [ 97*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 98*d4726bddSHONG Yifan ], 99*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ 100*d4726bddSHONG Yifan "@rules_rust_bindgen__windows-sys-0.48.0//:windows_sys", # cfg(windows) 101*d4726bddSHONG Yifan ], 102*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ 103*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 104*d4726bddSHONG Yifan ], 105*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ 106*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 107*d4726bddSHONG Yifan ], 108*d4726bddSHONG Yifan "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ 109*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 110*d4726bddSHONG Yifan ], 111*d4726bddSHONG Yifan "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ 112*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 113*d4726bddSHONG Yifan ], 114*d4726bddSHONG Yifan "@rules_rust//rust/platform:armv7-linux-androideabi": [ 115*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 116*d4726bddSHONG Yifan ], 117*d4726bddSHONG Yifan "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ 118*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 119*d4726bddSHONG Yifan ], 120*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-apple-darwin": [ 121*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 122*d4726bddSHONG Yifan ], 123*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-linux-android": [ 124*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 125*d4726bddSHONG Yifan ], 126*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-pc-windows-msvc": [ 127*d4726bddSHONG Yifan "@rules_rust_bindgen__windows-sys-0.48.0//:windows_sys", # cfg(windows) 128*d4726bddSHONG Yifan ], 129*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-unknown-freebsd": [ 130*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 131*d4726bddSHONG Yifan ], 132*d4726bddSHONG Yifan "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ 133*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 134*d4726bddSHONG Yifan ], 135*d4726bddSHONG Yifan "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ 136*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 137*d4726bddSHONG Yifan ], 138*d4726bddSHONG Yifan "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ 139*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 140*d4726bddSHONG Yifan ], 141*d4726bddSHONG Yifan "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ 142*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 143*d4726bddSHONG Yifan ], 144*d4726bddSHONG Yifan "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ 145*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 146*d4726bddSHONG Yifan ], 147*d4726bddSHONG Yifan "@rules_rust//rust/platform:thumbv7em-none-eabi": [ 148*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 149*d4726bddSHONG Yifan ], 150*d4726bddSHONG Yifan "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ 151*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 152*d4726bddSHONG Yifan ], 153*d4726bddSHONG Yifan "@rules_rust//rust/platform:wasm32-wasi": [ 154*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 155*d4726bddSHONG Yifan ], 156*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-apple-darwin": [ 157*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 158*d4726bddSHONG Yifan ], 159*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-apple-ios": [ 160*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 161*d4726bddSHONG Yifan ], 162*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-fuchsia": [ 163*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 164*d4726bddSHONG Yifan ], 165*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-linux-android": [ 166*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 167*d4726bddSHONG Yifan ], 168*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ 169*d4726bddSHONG Yifan "@rules_rust_bindgen__windows-sys-0.48.0//:windows_sys", # cfg(windows) 170*d4726bddSHONG Yifan ], 171*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ 172*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 173*d4726bddSHONG Yifan ], 174*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ 175*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 176*d4726bddSHONG Yifan ], 177*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ 178*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 179*d4726bddSHONG Yifan ], 180*d4726bddSHONG Yifan "@rules_rust//rust/platform:x86_64-unknown-none": [ 181*d4726bddSHONG Yifan "@rules_rust_bindgen__rustix-0.37.20//:rustix", # cfg(not(any(windows, target_os = "hermit", target_os = "unknown"))) 182*d4726bddSHONG Yifan ], 183*d4726bddSHONG Yifan "//conditions:default": [], 184*d4726bddSHONG Yifan }), 185*d4726bddSHONG Yifan) 186