rankops 0.1.2

Operations on ranked lists: fusion (RRF, CombMNZ, Borda, DBSF), reranking (MaxSim/ColBERT, MMR, DPP, Matryoshka). Pairs with rankfns (scoring kernels).
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 = "2021"
name = "rankops"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Operations on ranked lists: fusion (RRF, CombMNZ, Borda, DBSF), reranking (MaxSim/ColBERT, MMR, DPP, Matryoshka). Pairs with rankfns (scoring kernels)."
readme = "README.md"
keywords = [
    "rerank",
    "rrf",
    "retrieval",
    "rankops",
    "fusion",
]
categories = [
    "algorithms",
    "mathematics",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/rankops"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["rerank"]
hierarchical = ["dep:kodama"]
innr = ["rerank"]
rerank = ["dep:innr"]
serde = ["dep:serde"]

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

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

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

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

[dependencies.innr]
version = "0.1.0"
features = ["maxsim"]
optional = true

[dependencies.kodama]
version = "0.3"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.7"
features = ["html_reports"]

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