topological-sort 0.3.0

Performs topological sorting.
Documentation
# 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 = "2024"
rust-version = "1.88.0"
name = "topological-sort"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Performs topological sorting."
documentation = "https://docs.rs/topological-sort"
readme = "README.md"
keywords = [
    "dag",
    "dependency",
    "graph",
    "topological",
    "toposort",
]
categories = [
    "algorithms",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gifnksm/topological-sort-rs"

[package.metadata.cargo-sync-rdme.badge.badges]
maintenance = true
crates-io = true
docs-rs = true
rust-version = true
codecov = true

[package.metadata.cargo-sync-rdme.badge.badges.license]
link = "#license"

[package.metadata.cargo-sync-rdme.badge.badges.github-actions]
workflows = "ci.yml"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]
cargo-args = [
    "-Zunstable-options",
    "-Zrustdoc-scrape-examples",
]

[badges.maintenance]
status = "passively-maintained"

[lib]
name = "topological_sort"
path = "src/lib.rs"

[dev-dependencies.quickcheck]
version = "1.1.0"

[dev-dependencies.quickcheck_macros]
version = "1.2.0"

[lints.clippy]
get_unwrap = "warn"
inline_trait_bounds = "warn"

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
nonstandard_style = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unused = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"