ris 0.1.0

Rust implementation of the longest Increasing Subsequences and other monotonic sequences in O(N log N) time.
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 = "ris"
version = "0.1.0"
authors = ["o24s <fulmlumo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the longest Increasing Subsequences and other monotonic sequences in O(N log N) time."
homepage = "https://github.com/o24s/ris"
readme = "README.md"
keywords = [
    "lis",
    "algorithm",
    "diff",
    "no_std",
]
categories = [
    "algorithms",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/o24s/ris"

[features]
default = []
diff = ["dep:rustc-hash"]

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

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

[[bench]]
name = "lis_bench"
path = "benches/lis_bench.rs"
harness = false

[dependencies.rustc-hash]
version = "2.1.2"
optional = true

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.lis]
version = "1.0.0"

[dev-dependencies.longest-increasing-subsequence]
version = "0.1.0"

[dev-dependencies.rand]
version = "0.10.0"