forked from petgraph/petgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (46 loc) · 1.33 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
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "petgraph"
version = "0.4.13"
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.7.1", default-features = false }
indexmap = { version = "1.0.2", optional = true }
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
[dev-dependencies]
rand = "0.5.5"
odds = { version = "0.2.19" }
defmac = "0.1"
itertools = { version = "0.7.0", default-features = false }
[features]
default = ["graphmap", "stable_graph"]
graphmap = ["indexmap"]
serde-1 = ["serde", "serde_derive"]
stable_graph = []
# For unstable features
generate = []
unstable = ["generate"]
# feature flags for testing use only
all = ["unstable", "quickcheck", "stable_graph", "graphmap"]
[workspace]
members = ["serialization-tests"]
[package.metadata.docs.rs]
features = ["serde-1", "quickcheck"]
[package.metadata.release]
no-dev-version = true