[package]
name = "horon-engine"
version = "0.7.1"
edition = "2021"
description = "Hyperbolic tree tensor engine - hierarchical data storage with depth-independent lookups"
authors = ["Niels Erik Toren"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/nierto/horon-engine"
homepage = "https://github.com/nierto/horon-engine"
documentation = "https://docs.rs/horon-engine"
keywords = ["tree", "tensor", "hyperbolic", "geometry", "data-structure"]
categories = ["data-structures", "mathematics", "algorithms"]
include = [
"src/**",
"benches/**",
"examples/**",
"tests/**",
"README.md",
"CHANGELOG.md",
"PROOF.md",
"BENCHMARKS.md",
"LICENSE*",
"NOTICE",
]
[dependencies]
serde_json = "1.0"
log = "0.4"
g_math = "0.6"
dashmap = "5"
sha3 = "0.10"
hex = "0.4"
[dev-dependencies]
criterion = "0.4"
tempfile = "3.3"
proptest = "1.0"
serde = { version = "1.0", features = ["derive"] }
[[bench]]
name = "spatial_queries"
harness = false
[[bench]]
name = "semantic"
harness = false
[profile.test]
opt-level = 2
[profile.release]
debug = false
lto = true
codegen-units = 1
opt-level = 3
panic = "abort"
[profile.bench]
debug = true
lto = true
opt-level = 3