[package] name = "aph_disjoint_set" version = "0.1.1" edition = "2021" authors = ["AngelicosPhosphoros "] license = "MIT OR Apache-2.0" readme = "../Readme.md" categories = ["data-structures"] keywords = ["disjoint-set", "union-find", "graph-algorithms"] repository = "https://foss.heptapod.net/angelicos_phosphoros/aph-disjoint-set" documentation = "https://docs.rs/aph_disjoint_set" rust-version = "1.70" description = "Disjoint set implementation with optimized memory usage and ability to detach elements." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] [dev-dependencies] rstest = { version = "0.17.0", default-features = false } itertools = "0.10.5"