[package] name = "binary-merge" version = "0.1.2" edition = "2021" authors = ["RĂ¼diger Klaehn "] description = "Minimum comparison merge of two sorted sequences with random access" repository = "https://github.com/rklaehn/binary-merge" license = "MIT OR Apache-2.0" keywords = ["array", "sorting", "merging"] categories = ["algorithms"] readme = "README.md" homepage = "https://github.com/rklaehn" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] [dev-dependencies] criterion = "0.3.5" proptest = "1.0.0" [[bench]] name = "merge" harness = false [lib] doctest = false