subms-merge-iterator 0.10.0

submillisecond.com cookbook recipe - storage: subms-merge-iterator. N-way merge of sorted streams via min-heap.
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "subms-merge-iterator"
version = "0.10.0"
authors = ["Kieran Smith <oss@submillisecond.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "submillisecond.com cookbook recipe - storage: subms-merge-iterator. N-way merge of sorted streams via min-heap."
homepage = "https://www.submillisecond.com/cookbook/recipes/subms-merge-iterator"
documentation = "https://www.submillisecond.com/cookbook/recipes/subms-merge-iterator"
readme = "README.md"
keywords = [
    "merge",
    "sorted",
    "k-way",
    "subms",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/submillisecond/subms-cookbook/tree/main/recipes/subms-merge-iterator"

[package.metadata.docs.rs]
all-features = true

[features]
dedup = []
default = []
full = [
    "seek-to",
    "reverse",
    "tombstones",
    "dedup",
    "priority",
]
harness = ["dep:subms"]
priority = []
reverse = []
seek-to = []
tombstones = []

[lib]
name = "subms_merge_iterator"
path = "src/lib.rs"

[[example]]
name = "perf_features"
path = "examples/perf_features.rs"
required-features = [
    "harness",
    "seek-to",
    "reverse",
    "tombstones",
    "dedup",
    "priority",
]

[[example]]
name = "perf_main"
path = "examples/perf_main.rs"
required-features = ["harness"]

[[example]]
name = "sample_app"
path = "examples/sample_app.rs"

[[test]]
name = "sub_millisecond_bench"
path = "tests/sub_millisecond_bench.rs"

[dependencies.subms]
version = "0.9.3"
optional = true