86 lines
1.8 KiB
TOML
86 lines
1.8 KiB
TOML
# 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.66.0"
|
|
name = "rangemap"
|
|
version = "1.6.0"
|
|
authors = ["Jeff Parsons <jeff@parsons.io>"]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = """
|
|
Map and set data structures whose keys are stored as ranges.
|
|
|
|
Contiguous and overlapping ranges that map to the same value are coalesced into a single range.
|
|
"""
|
|
homepage = "https://github.com/jeffparsons/rangemap"
|
|
documentation = "https://docs.rs/rangemap"
|
|
readme = "README.md"
|
|
categories = ["data-structures"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/jeffparsons/rangemap"
|
|
|
|
[features]
|
|
const_fn = []
|
|
nightly = []
|
|
quickcheck = ["dep:quickcheck"]
|
|
serde1 = ["serde"]
|
|
|
|
[lib]
|
|
name = "rangemap"
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "roster"
|
|
path = "examples/roster.rs"
|
|
|
|
[[bench]]
|
|
name = "benches"
|
|
path = "benches/benches.rs"
|
|
harness = false
|
|
|
|
[dependencies.quickcheck]
|
|
version = "1.0.3"
|
|
optional = true
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
optional = true
|
|
|
|
[dev-dependencies.chrono]
|
|
version = "0.4"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "= 0.3.5"
|
|
|
|
[dev-dependencies.permutator]
|
|
version = "0.4"
|
|
|
|
[dev-dependencies.proptest]
|
|
version = "1.4.0"
|
|
|
|
[dev-dependencies.rand]
|
|
version = "0.8"
|
|
|
|
[dev-dependencies.rustc_version]
|
|
version = "0.4"
|
|
|
|
[dev-dependencies.serde_json]
|
|
version = "1"
|
|
|
|
[dev-dependencies.test-strategy]
|
|
version = "0.3.1"
|