forked from petgraph/petgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (31 loc) · 804 Bytes
/
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
[package]
name = "petgraph"
version = "0.2.8"
license = "MIT/Apache-2.0"
authors = [
"bluss",
"mitchmindtree",
]
description = "Graph data structure library. Provides graph types and graph algorithms."
documentation = "http://bluss.github.io/petgraph"
repository = "https://github.com/bluss/petgraph"
keywords = ["data-structure", "graph", "unionfind", "graph-algorithms"]
[lib]
name = "petgraph"
bench = false
[profile.release]
[profile.bench]
debug = true
[dependencies]
fixedbitset = "0.1.0"
quickcheck = { optional = true, version = "0.2.24" }
[dev-dependencies]
rand = "0.3"
[features]
# For unstable features: StableGraph, etc
stable_graph = []
generate = []
unstable = ["generate", "stable_graph"]
# feature flags for testing use only
test = []
all = ["test", "unstable", "quickcheck"]