1 2 3# petgraph 4 5Graph data structure library. Please read the [API documentation here][]. 6 7Supports Rust 1.64 and later. 8 9[![Crates.io][crates-badge]][crates-url] 10[![docs.rs][docsrs-badge]][docsrs-url] 11![MSRV][msrv-badge] 12[![Discord chat][discord-badge]][discord-url] 13[![build_status][]](https://github.com/petgraph/petgraph/actions) 14 15Crate feature flags: 16 17- `graphmap` (default) enable `GraphMap`. 18- `stable_graph` (default) enable `StableGraph`. 19- `matrix_graph` (default) enable `MatrixGraph`. 20- `serde-1` (optional) enable serialization for `Graph, StableGraph, GraphMap` 21 using serde 1.0. Requires Rust version as required by serde. 22- `rayon` (optional) enable parallel iterators for the underlying data in `GraphMap`. Requires Rust version as required by Rayon. 23 24## Recent Changes 25 26See [RELEASES][] for a list of changes. The minimum supported rust 27version will only change on major releases. 28 29## Logo 30 31The mascot is named "Sir Paul Rustory Graphosaurus" (close friends call him Paul). 32The logo has been created by the talented Aren. 33 34## License 35 36Dual-licensed to be compatible with the Rust project. 37 38Licensed under the Apache License, Version 2.0 39<http://www.apache.org/licenses/LICENSE-2.0> or the MIT license 40<http://opensource.org/licenses/MIT>, at your option. This file may not 41be copied, modified, or distributed except according to those terms. 42 43[API documentation here]: https://docs.rs/petgraph/ 44[build_status]: https://github.com/petgraph/petgraph/workflows/Continuous%20integration/badge.svg?branch=master 45[docsrs-badge]: https://img.shields.io/docsrs/petgraph 46[docsrs-url]: https://docs.rs/petgraph/latest/petgraph/ 47[crates-badge]: https://img.shields.io/crates/v/petgraph.svg 48[crates-url]: https://crates.io/crates/petgraph 49[discord-badge]: https://img.shields.io/discord/1166289348384280616?logo=discord&style=flat 50[discord-url]: https://discord.gg/n2tc79tJ4e 51[msrv-badge]: https://img.shields.io/badge/rustc-1.64+-blue.svg 52[RELEASES]: RELEASES.rst 53