forked from petgraph/petgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (37 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "petgraph"
version = "0.4.3"
license = "MIT/Apache-2.0"
authors = [
"bluss",
"mitchmindtree",
]
description = "Graph data structure library. Provides graph types and graph algorithms."
documentation = "https://docs.rs/petgraph/"
repository = "https://github.com/bluss/petgraph"
keywords = ["data-structure", "graph", "unionfind", "graph-algorithms"]
categories = ["data-structures"]
[lib]
name = "petgraph"
bench = false
[profile.release]
[profile.bench]
debug = true
[dependencies]
fixedbitset = { version = "0.1.4" }
quickcheck = { optional = true, version = "0.4", default-features = false }
ordermap = { version = "0.2.2", optional = true }
[dev-dependencies]
rand = "0.3"
odds = { version = "0.2.19" }
itertools = { version = "0.5" }
defmac = "0.1"
[features]
default = ["graphmap", "stable_graph"]
graphmap = ["ordermap"]
stable_graph = []
# For unstable features
generate = []
unstable = ["generate"]
# feature flags for testing use only
all = ["unstable", "quickcheck", "stable_graph", "graphmap"]