forked from jeffparsons/rangemap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (31 loc) · 855 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "rangemap"
version = "1.0.1"
authors = ["Jeff Parsons <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/jeffparsons/rangemap"
documentation = "https://docs.rs/rangemap"
homepage = "https://github.com/jeffparsons/rangemap"
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.
"""
categories = ["data-structures"]
[dependencies]
serde = { version = "1", optional = true }
[dev-dependencies]
permutator = "0.4"
criterion = "0.3"
rand = "0.8"
chrono = "0.4" # For examples
rustc_version = "0.4"
serde_json = "1"
[features]
serde1 = ["serde"]
# So we can run doc tests from "README.md".
nightly = []
[[bench]]
name = "kitchen_sink"
harness = false