[[bench]]
harness = false
name = "spatial_benchmarks"
path = "benches/spatial_benchmarks.rs"
[dependencies.bincode]
optional = true
version = "1.3"
[dependencies.bytes]
version = "1.5"
[dependencies.geo]
version = "0.31.0"
[dependencies.geohash]
version = "0.13.1"
[dependencies.once_cell]
version = "1.19"
[dependencies.rstar]
version = "0.11.0"
[dependencies.rustc-hash]
version = "1.1"
[dependencies.s2]
version = "0.0.13"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.smallvec]
version = "1.11"
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
optional = true
version = "0.8"
[dependencies.uuid]
features = ["v4"]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.8"
[[example]]
name = "comprehensive_demo"
path = "examples/comprehensive_demo.rs"
[[example]]
doc-scrape-examples = true
name = "getting_started"
path = "examples/getting_started.rs"
[[example]]
name = "spatial_queries"
path = "examples/spatial_queries.rs"
[[example]]
name = "trajectory_tracking"
path = "examples/trajectory_tracking.rs"
[features]
aof = ["dep:bincode"]
default = ["aof", "geojson"]
full = ["geojson", "aof", "toml"]
geojson = []
toml = ["dep:toml"]
[lib]
crate-type = ["rlib"]
name = "spatio"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database-implementations", "science::geo"]
description = "A high-performance, embedded spatio-temporal database for modern applications"
documentation = "https://docs.rs/spatio"
edition = "2021"
homepage = "https://github.com/pkvartsianyi/spatio"
keywords = ["spatial", "database", "geospatial", "embedded", "temporal"]
license = "MIT"
name = "spatio"
readme = "README.md"
repository = "https://github.com/pkvartsianyi/spatio"
rust-version = "1.90.0"
version = "0.1.0"
[[test]]
name = "aof_rewrite_test"
path = "tests/aof_rewrite_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"