diff options
Diffstat (limited to 'cargo/remote/BUILD.procfs-0.9.1.bazel')
| -rw-r--r-- | cargo/remote/BUILD.procfs-0.9.1.bazel | 81 | 
1 files changed, 81 insertions, 0 deletions
diff --git a/cargo/remote/BUILD.procfs-0.9.1.bazel b/cargo/remote/BUILD.procfs-0.9.1.bazel new file mode 100644 index 0000000..5819e10 --- /dev/null +++ b/cargo/remote/BUILD.procfs-0.9.1.bazel @@ -0,0 +1,81 @@ +""" +@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 "//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 "diskstat" with type "example" omitted + +# Unsupported target "dump" with type "example" omitted + +# Unsupported target "interface_stats" with type "example" omitted + +# Unsupported target "lslocks" with type "example" omitted + +# Unsupported target "lsmod" with type "example" omitted + +# Unsupported target "mountinfo" with type "example" omitted + +# Unsupported target "netstat" with type "example" omitted + +# Unsupported target "pressure" with type "example" omitted + +# Unsupported target "process_hierarchy" with type "example" omitted + +# Unsupported target "ps" with type "example" omitted + +# Unsupported target "self_memory" with type "example" omitted + +rust_library( +    name = "procfs", +    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.9.1", +    # buildifier: leave-alone +    deps = [ +        "@raze__bitflags__1_3_2//:bitflags", +        "@raze__byteorder__1_4_3//:byteorder", +        "@raze__flate2__1_0_22//:flate2", +        "@raze__hex__0_4_3//:hex", +        "@raze__lazy_static__1_4_0//:lazy_static", +        "@raze__libc__0_2_101//:libc", +    ], +)  | 
