# 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 = "tagged_ufs" version = "0.2.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ A union-find-set implementation, in which sets can be associated with tags. When two sets are united, their tags are merged. """ readme = "README.md" keywords = [ "set", "union-find-set", ] categories = [ "algorithms", "data-structures", ] license-file = "LICENSE" repository = "https://github.com/TimeExceed/tagged-ufs" [lib] name = "tagged_ufs" path = "src/lib.rs" [[example]] name = "mst" path = "examples/mst.rs" [[example]] name = "my_iterable" path = "examples/my_iterable.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.ahash] version = "0.8.11" [dependencies.anyhow] version = "1.0.75" [dev-dependencies.algograph] version = "0.4.0" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.quickcheck] version = "1.0.3" [dev-dependencies.quickcheck_macros] version = "1.0.0"