blob: 6fb88b7076403a63e295e3a1d53269aa46344151 [file] [log] [blame]
Serge Bazanskicbf1fa92021-07-02 17:28:50 +02001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
Leopold2aa8b182023-01-14 23:31:43 +010013 "@rules_rust//rust:defs.bzl",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020014 "rust_binary",
15 "rust_library",
Leopold2aa8b182023-01-14 23:31:43 +010016 "rust_proc_macro",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020017 "rust_test",
18)
19
20package(default_visibility = [
21 # Public for visibility by "@raze__crate__version//" targets.
22 #
23 # Prefer access through "//third_party/rust/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "unencumbered", # CC0-1.0 from expression "CC0-1.0"
30])
31
32# Generated Targets
33
34# Unsupported target "monitor_debounced" with type "example" omitted
35
36# Unsupported target "monitor_raw" with type "example" omitted
37
38rust_library(
39 name = "notify",
40 srcs = glob(["**/*.rs"]),
41 aliases = {
42 },
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020043 crate_root = "src/lib.rs",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020044 data = [],
45 edition = "2015",
46 rustc_flags = [
47 "--cap-lints=allow",
48 ],
49 tags = [
50 "cargo-raze",
Leopold2aa8b182023-01-14 23:31:43 +010051 "crate-name=notify",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020052 "manual",
53 ],
54 version = "4.0.17",
55 # buildifier: leave-alone
56 deps = [
Leopold2aa8b182023-01-14 23:31:43 +010057 "@raze__bitflags__1_3_2//:bitflags",
58 "@raze__filetime__0_2_19//:filetime",
59 "@raze__libc__0_2_139//:libc",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020060 "@raze__walkdir__2_3_2//:walkdir",
61 ] + selects.with_or({
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020062 (
63 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
64 ): [
65 "@raze__inotify__0_7_1//:inotify",
66 "@raze__mio__0_6_23//:mio",
67 "@raze__mio_extras__2_0_6//:mio_extras",
68 ],
69 "//conditions:default": [],
70 }),
71)
72
73# Unsupported target "debounce" with type "test" omitted
74
75# Unsupported target "event_path" with type "test" omitted
76
77# Unsupported target "fsevents" with type "test" omitted
78
79# Unsupported target "notify" with type "test" omitted
80
81# Unsupported target "race-with-remove-dir" with type "test" omitted
82
83# Unsupported target "watcher" with type "test" omitted
84
85# Unsupported target "windows" with type "test" omitted