spillover 0.1.3

Generic, disk-spilling external sort pipelines with pluggable keys, codecs, and deduplication
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"
name = "spillover"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic, disk-spilling external sort pipelines with pluggable keys, codecs, and deduplication"
readme = "README.md"
license = "MIT"
repository = "https://github.com/nrminor/spillover"

[features]
rayon = ["dep:rayon"]

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

[[example]]
name = "01_basic_u64_sort"
path = "examples/01_basic_u64_sort.rs"

[[example]]
name = "02_custom_record_and_sort_key"
path = "examples/02_custom_record_and_sort_key.rs"

[[example]]
name = "03_reverse_and_custom_compare"
path = "examples/03_reverse_and_custom_compare.rs"

[[example]]
name = "04_adjacent_dedup"
path = "examples/04_adjacent_dedup.rs"

[[example]]
name = "05_keyed_codec_merge"
path = "examples/05_keyed_codec_merge.rs"

[[example]]
name = "06_spill_controls"
path = "examples/06_spill_controls.rs"

[dependencies.get-size2]
version = "0.7.4"
features = ["derive"]

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.tempfile]
version = "3.19.1"

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.proptest]
version = "1.10.0"

[lints.clippy]
unwrap_used = "deny"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.complexity]
level = "warn"
priority = -1

[lints.clippy.correctness]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.clippy.perf]
level = "warn"
priority = -1

[lints.clippy.style]
level = "warn"
priority = -1