blob: fc04773d3d4a76d93e14c7f1156a19bfc580e6ef [file] [log] [blame]
Lorenz Brund141d182023-10-02 15:07:01 +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(
13 "@rules_rust//rust:defs.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_proc_macro",
17 "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 "notice", # MIT from expression "MIT OR Apache-2.0"
30])
31
32# Generated Targets
33
34# Unsupported target "bellman_ford" with type "bench" omitted
35
36# Unsupported target "dijkstra" with type "bench" omitted
37
38# Unsupported target "feedback_arc_set" with type "bench" omitted
39
40# Unsupported target "floyd_warshall" with type "bench" omitted
41
42# Unsupported target "iso" with type "bench" omitted
43
44# Unsupported target "k_shortest_path" with type "bench" omitted
45
46# Unsupported target "matching" with type "bench" omitted
47
48# Unsupported target "matrix_graph" with type "bench" omitted
49
50# Unsupported target "ograph" with type "bench" omitted
51
52# Unsupported target "serialize" with type "bench" omitted
53
54# Unsupported target "stable_graph" with type "bench" omitted
55
56# Unsupported target "unionfind" with type "bench" omitted
57
58rust_library(
59 name = "petgraph",
60 srcs = glob(["**/*.rs"]),
61 crate_root = "src/lib.rs",
62 data = [],
63 edition = "2018",
64 rustc_flags = [
65 "--cap-lints=allow",
66 ],
67 tags = [
68 "cargo-raze",
69 "crate-name=petgraph",
70 "manual",
71 ],
72 version = "0.6.4",
73 # buildifier: leave-alone
74 deps = [
75 "@raze__fixedbitset__0_4_2//:fixedbitset",
76 "@raze__indexmap__2_0_2//:indexmap",
77 ],
78)
79
80# Unsupported target "floyd_warshall" with type "test" omitted
81
82# Unsupported target "graph" with type "test" omitted
83
84# Unsupported target "graphmap" with type "test" omitted
85
86# Unsupported target "iso" with type "test" omitted
87
88# Unsupported target "k_shortest_path" with type "test" omitted
89
90# Unsupported target "list" with type "test" omitted
91
92# Unsupported target "matching" with type "test" omitted
93
94# Unsupported target "operator" with type "test" omitted
95
96# Unsupported target "quickcheck" with type "test" omitted
97
98# Unsupported target "stable_graph" with type "test" omitted
99
100# Unsupported target "unionfind" with type "test" omitted