-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (33 loc) · 987 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
37
[package]
name = "nodit"
version = "0.9.2"
authors = ["James Forster <james.forsterer@gmail.com>"]
edition = "2021"
description = """
This crate provides Discrete Interval Tree Data-Structures, which are based
off BTreeMap.
"""
documentation = "https://docs.rs/nodit"
readme = "README.md"
homepage = "https://github.com/ripytide/nodit"
repository = "https://github.com/ripytide/nodit"
license = "MIT"
keywords = ["data-structures", "map", "data", "library"]
categories = ["data-structures"]
[dependencies]
serde = { version = "1.0.204", features = [
"derive",
], default-features = false, optional = true }
btree_monstrousity = { version = "0.0.5", features = [
"btree_drain_filter",
"btree_cursors",
], default-features = false }
itertools = { version = "0.13.0", default-features = false }
smallvec = { version = "1.13.2", default-features = false }
[features]
default = []
serde = ["dep:serde"]
[dev-dependencies]
pretty_assertions = "1.4.0"
[lints.rust]
missing_docs = "deny"