# 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] name = "dmsort" version = "1.0.2" authors = ["Emil Ernerfeldt "] include = [ "**/*.rs", "Cargo.toml", "LICENSE", ] description = """ Fast adaptive sorting for when most of your data is already in order. dmsort can be 2-5 times faster than Rust's default sort when more than 80% of the elements are already in order. """ readme = "README.md" keywords = [ "sorting", "sort", "adaptive", ] categories = ["algorithms"] license = "MIT" repository = "https://github.com/emilk/drop-merge-sort" [lib] name = "dmsort" path = "src/lib.rs" test = false bench = false [dev-dependencies.gnuplot] version = "0.0.22" [dev-dependencies.pbr] version = "1" [dev-dependencies.rand] version = "0.7" [dev-dependencies.time] version = "0.1"