|  | """ | 
|  | @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:defs.bzl", | 
|  | "rust_binary", | 
|  | "rust_library", | 
|  | "rust_proc_macro", | 
|  | "rust_test", | 
|  | ) | 
|  |  | 
|  | package(default_visibility = [ | 
|  | # Public for visibility by "@raze__crate__version//" targets. | 
|  | # | 
|  | # Prefer access through "//third_party/rust/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 "bellman_ford" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "dijkstra" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "feedback_arc_set" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "floyd_warshall" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "iso" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "k_shortest_path" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "matching" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "matrix_graph" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "ograph" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "serialize" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "stable_graph" with type "bench" omitted | 
|  |  | 
|  | # Unsupported target "unionfind" with type "bench" omitted | 
|  |  | 
|  | rust_library( | 
|  | name = "petgraph", | 
|  | srcs = glob(["**/*.rs"]), | 
|  | crate_root = "src/lib.rs", | 
|  | data = [], | 
|  | edition = "2018", | 
|  | rustc_flags = [ | 
|  | "--cap-lints=allow", | 
|  | ], | 
|  | tags = [ | 
|  | "cargo-raze", | 
|  | "crate-name=petgraph", | 
|  | "manual", | 
|  | ], | 
|  | version = "0.6.4", | 
|  | # buildifier: leave-alone | 
|  | deps = [ | 
|  | "@raze__fixedbitset__0_4_2//:fixedbitset", | 
|  | "@raze__indexmap__2_0_2//:indexmap", | 
|  | ], | 
|  | ) | 
|  |  | 
|  | # Unsupported target "floyd_warshall" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "graph" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "graphmap" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "iso" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "k_shortest_path" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "list" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "matching" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "operator" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "quickcheck" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "stable_graph" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "unionfind" with type "test" omitted |