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
|
Index: petgraph/Cargo.toml
===================================================================
--- petgraph.orig/Cargo.toml
+++ petgraph/Cargo.toml
@@ -51,25 +51,12 @@ no-dev-version = true
trait_newly_sealed = "allow"
[features]
-all = [
- "unstable",
- "matrix_graph",
- "stable_graph",
- "graphmap",
- "rayon",
- "dot_parser",
-]
default = [
"std",
"graphmap",
"stable_graph",
"matrix_graph",
]
-dot_parser = [
- "std",
- "dep:dot-parser",
- "dep:dot-parser-macros",
-]
generate = []
graphmap = []
matrix_graph = []
@@ -296,14 +283,6 @@ path = "benches/stable_graph.rs"
name = "unionfind"
path = "benches/unionfind.rs"
-[dependencies.dot-parser]
-version = "0.5.1"
-optional = true
-
-[dependencies.dot-parser-macros]
-version = "0.5.1"
-optional = true
-
[dependencies.fixedbitset]
version = "0.5.7"
default-features = false
|