# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "graph-algorithms-rs" version = "0.1.9" authors = ["Slavik Pastushenko "] build = false exclude = [ ".github/**", "examples/**", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A collection of graph algorithms." documentation = "https://docs.rs/graph-algorithms-rs" readme = "README.md" license = "MIT" repository = "https://github.com/slavik-pastushenko/graph-algorithms-rs" [lib] name = "graph_algorithms" path = "src/lib.rs" [features] bellman_ford = [] default = [ "bellman_ford", "dijkstra", "floyd_warshall", ] dijkstra = [] floyd_warshall = []