forked from andreafioraldi/store-interval-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 835 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
[package]
name = "store-interval-tree"
version = "0.4.0"
edition = "2021"
authors = ["Andrea Fioraldi <[email protected]>"]
description = "A balanced unbounded interval-tree in Rust with associated values in the nodes"
documentation = "https://docs.rs/store-interval-tree"
repository = "https://github.com/andreafioraldi/store-interval-tree"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["tree", "data-structure", "algorithm"]
categories = ["data-structures", "algorithms" ]
[features]
default = []
[dependencies]
num = { version = "0.4", default_features = false }
rkyv = { git = "https://github.com/praveenperera/rkyv", branch = "0.7", features = [
"indexmap",
"validation",
"strict",
]}
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
bytecheck = { version = "0.6" }