range-collections 0.4.6

Sets and maps of ranges, backed by smallvec
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"
name = "range-collections"
version = "0.4.6"
authors = ["RĂ¼diger Klaehn <rklaehn@protonmail.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sets and maps of ranges, backed by smallvec"
homepage = "https://github.com/rklaehn"
readme = "README.md"
keywords = [
    "succinct",
    "array",
    "range",
    "smallvec",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rklaehn/range-collections"

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

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

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

[dependencies.binary-merge]
version = "0.1.1"

[dependencies.bytecheck]
version = "0.6.5"
optional = true

[dependencies.inplace-vec-builder]
version = "0.1.0"
features = ["smallvec"]
default-features = false

[dependencies.ref-cast]
version = "1.0.20"

[dependencies.rkyv]
version = "0.7.18"
optional = true

[dependencies.serde]
version = "1"
optional = true
default-features = false

[dependencies.smallvec]
version = "1.0"

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

[dev-dependencies.hex]
version = "0.4.3"

[dev-dependencies.num-traits]
version = "0.2.8"

[dev-dependencies.obey]
version = "0.1.1"

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

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

[dev-dependencies.quickcheck_macros]
version = "0.8.0"

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

[dev-dependencies.rkyv]
version = "0.7.18"
features = ["validation"]

[dev-dependencies.serde_cbor]
version = "0.11.1"

[dev-dependencies.testdrop]
version = "0.1.2"

[features]
default = []
new_unchecked = []
rkyv_validated = [
    "rkyv",
    "bytecheck",
]