generated from habedi/template-rust-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 773 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
[package]
name = "spart"
version = "0.1.1"
description = "A collection of space partitioning tree data structures for Rust."
repository = "https://github.com/habedi/spart"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["quadtree", "kdtree", "r-tree", "octree", "spatial-index"]
authors = ["Hassan Abedi <[email protected]>"]
homepage = "https://github.com/habedi/spart"
documentation = "https://docs.rs/spart"
categories = ["data-structures", "algorithms"]
edition = "2021"
[lib]
name = "spart"
path = "src/lib.rs"
[dependencies]
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
ordered-float = "4.6.0"
ctor = "0.2.9"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "insert_bench"
harness = false