1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.64" 15name = "petgraph" 16version = "0.6.5" 17authors = [ 18 "bluss", 19 "mitchmindtree", 20] 21description = "Graph data structure library. Provides graph types and graph algorithms." 22documentation = "https://docs.rs/petgraph/" 23readme = "README.md" 24keywords = [ 25 "data-structure", 26 "graph", 27 "unionfind", 28 "graph-algorithms", 29] 30categories = ["data-structures"] 31license = "MIT OR Apache-2.0" 32repository = "https://github.com/petgraph/petgraph" 33 34[package.metadata.docs.rs] 35features = [ 36 "rayon", 37 "serde-1", 38 "quickcheck", 39] 40 41[package.metadata.release] 42no-dev-version = true 43 44[profile.bench] 45debug = 2 46 47[profile.release] 48 49[lib] 50name = "petgraph" 51bench = false 52 53[dependencies.fixedbitset] 54version = "0.4.0" 55default-features = false 56 57[dependencies.indexmap] 58version = "2.0" 59 60[dependencies.quickcheck] 61version = "0.8" 62optional = true 63default-features = false 64 65[dependencies.rayon] 66version = "1.5.3" 67optional = true 68 69[dependencies.serde] 70version = "1.0" 71optional = true 72 73[dependencies.serde_derive] 74version = "1.0" 75optional = true 76 77[dev-dependencies.ahash] 78version = "0.7.2" 79 80[dev-dependencies.bincode] 81version = "1.3.3" 82 83[dev-dependencies.defmac] 84version = "0.2.1" 85 86[dev-dependencies.fxhash] 87version = "0.2.1" 88 89[dev-dependencies.itertools] 90version = "0.12.1" 91default-features = false 92 93[dev-dependencies.odds] 94version = "0.4.0" 95 96[dev-dependencies.rand] 97version = "0.5.5" 98 99[features] 100all = [ 101 "unstable", 102 "quickcheck", 103 "matrix_graph", 104 "stable_graph", 105 "graphmap", 106 "rayon", 107] 108default = [ 109 "graphmap", 110 "stable_graph", 111 "matrix_graph", 112] 113generate = [] 114graphmap = [] 115matrix_graph = [] 116rayon = [ 117 "dep:rayon", 118 "indexmap/rayon", 119] 120serde-1 = [ 121 "serde", 122 "serde_derive", 123] 124stable_graph = [] 125unstable = ["generate"] 126