# 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 = "cursorsort" version = "0.4.0" authors = ["Harry Law (h5law) "] description = "A QuickSort implementation with a cursor based partitioner and pivot selector" homepage = "https://github.com/h5law/cursorsort" documentation = "https://docs.rs/cursorsort" readme = "README.md" keywords = [ "sorting", "quicksort", "cursor", "partition", "cursor-based", ] categories = [ "algorithms", "data-structures", ] license-file = "LICENSE" repository = "https://github.com/h5law/cursorsort" [lib] name = "cursorsort" crate-type = [ "lib", "cdylib", ] path = "src/lib.rs" bench = false [dependencies]