rust-lapper 2.0.0-beta.1

A fast and easy interval overlap library
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 = "2018"
rust-version = "1.59"
name = "rust-lapper"
version = "2.0.0-beta.1"
authors = ["Seth Stadick <sstadick@gmail.com>"]
build = false
include = [
    "/src/**",
    "/tests/**",
    "/benches/**",
    "/examples/**",
    "/Cargo.toml",
    "/Cargo.lock",
    "/LICENSE",
    "/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast and easy interval overlap library"
documentation = "https://docs.rs/rust-lapper"
readme = "README.md"
keywords = [
    "tree",
    "interval",
    "bioinformatics",
    "ranges",
    "genomic",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT"
repository = "https://github.com/sstadick/rust-lapper"

[features]
default = []
sort_unstable = []
with_serde = ["serde/derive"]

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

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

[[example]]
name = "serde"
path = "examples/serde.rs"
required-features = ["with_serde"]

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

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

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

[dependencies.num-traits]
version = "0.2.12"

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

[dev-dependencies.bincode]
version = "1.3.3"

[dev-dependencies.criterion]
version = "0.4"
features = ["cargo_bench_support"]
default-features = false

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