1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
[package]
name = "binary-merge"
version = "0.1.2"
edition = "2021"
authors = ["RĂ¼diger Klaehn <rklaehn@protonmail.com>"]
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
|