-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
50 lines (45 loc) · 1.5 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "rangemap"
version = "1.6.0"
authors = ["Jeff Parsons <jeff@parsons.io>"]
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"]
rust-version = "1.66.0"
[dependencies]
quickcheck = { version = "1.0.3", optional = true }
serde = { version = "1", optional = true }
[dev-dependencies]
permutator = "0.4"
# Criterion bumps its MSRV in 0.3.6; it is probably reasonable
# to update rangemap's MSRV, too, but until I actually publish
# a policy on that I'm going to avoid doing a big bump right now.
# (Later problem!)
criterion = "= 0.3.5"
rand = "0.8"
chrono = "0.4" # For examples
rustc_version = "0.4"
serde_json = "1"
proptest = "1.4.0"
test-strategy = "0.3.1"
[features]
serde1 = ["serde"]
# So we can run doc tests from "README.md".
nightly = []
# Enables `RangeMap::new()`, `RangeInclusiveMap::new()`, `RangeSet::new()`,
# and `RangeInclusiveSet::new()` to be const functions.
# Requires a nightly compiler because `const_btree_new` is an unstable feature,
# but is soon to be stabilized: <https://github.com/rust-lang/rust/issues/71835>
const_fn = []
quickcheck = ["dep:quickcheck"]
[[bench]]
name = "benches"
harness = false