• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H03-May-2022-12692

benches/H03-May-2022-1,3011,056

src/H03-May-2022-18,61313,006

tests/H03-May-2022-6,0505,109

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D01-Jan-197041 43

CONTRIBUTING.rstH A D01-Jan-19703.4 KiB13080

Cargo.tomlH A D01-Jan-19701.9 KiB8268

Cargo.toml.orig-cargoH A D01-Jan-19701.4 KiB6749

LICENSE-APACHEH A D01-Jan-197010.6 KiB202169

LICENSE-MITH A D01-Jan-19701 KiB2622

MakefileH A D01-Jan-1970982 3923

README.rstH A D01-Jan-19701.4 KiB5031

RELEASES.rstH A D01-Jan-197018.2 KiB524399

clippy.tomlH A D01-Jan-197015 11

custom.cssH A D01-Jan-1970533 2620

graph-example.dotH A D01-Jan-1970222 1614

README.rst

1
2petgraph
3========
4
5Graph data structure library. Supports Rust 1.41 and later.
6
7Please read the `API documentation here`__
8
9__ https://docs.rs/petgraph/
10
11|build_status|_ |crates|_ |gitter|_
12
13.. |build_status| image:: https://github.com/petgraph/petgraph/workflows/Continuous%20integration/badge.svg?branch=master
14.. _build_status: https://github.com/petgraph/petgraph/actions
15
16.. |crates| image:: http://meritbadge.herokuapp.com/petgraph
17.. _crates: https://crates.io/crates/petgraph
18
19.. |gitter| image:: https://badges.gitter.im/petgraph-rs/community.svg
20.. _gitter: https://gitter.im/petgraph-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
21
22Crate feature flags:
23
24- ``graphmap`` (default) enable ``GraphMap``.
25- ``stable_graph`` (default) enable ``StableGraph``.
26- ``matrix_graph`` (default) enable ``MatrixGraph``.
27- ``serde-1`` (optional) enable serialization for ``Graph, StableGraph`` using
28  serde 1.0. Requires Rust version as required by serde.
29
30Recent Changes
31--------------
32
33See RELEASES_ for a list of changes.
34The minimum supported rust version will only change on major releases.
35
36.. _RELEASES: RELEASES.rst
37
38License
39-------
40
41Dual-licensed to be compatible with the Rust project.
42
43Licensed under the Apache License, Version 2.0
44http://www.apache.org/licenses/LICENSE-2.0 or the MIT license
45http://opensource.org/licenses/MIT, at your
46option. This file may not be copied, modified, or distributed
47except according to those terms.
48
49
50