horon-engine 0.7.1

Hyperbolic tree tensor engine - hierarchical data storage with depth-independent lookups
Documentation
[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"]
# Allowlist: keep the crates.io tarball to the shipped surface.
include = [
    "src/**",
    "benches/**",
    "examples/**",
    "tests/**",
    "README.md",
    "CHANGELOG.md",
    "PROOF.md",
    "BENCHMARKS.md",
    "LICENSE*",
    "NOTICE",
]

[dependencies]
# Core dependencies
serde_json = "1.0"
log = "0.4"

# Geometric mathematics library - REQUIRED
g_math = "0.6"

# Concurrent data structures
dashmap = "5"

# Hashing and serialization
sha3 = "0.10"
hex = "0.4"

[dev-dependencies]
criterion = "0.4"
tempfile = "3.3"
proptest = "1.0"
# Only the custom_extension example derives Serialize/Deserialize. The
# library needs serde_json, which depends on serde in its own right, so
# consumers do not have to compile serde_derive for our sake.
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