[package]
edition = "2021"
name = "horon-engine"
version = "0.4.0"
authors = ["Niels Erik Toren"]
build = false
include = [
"src/**",
"benches/**",
"examples/**",
"tests/**",
"README.md",
"PROOF.md",
"BENCHMARKS.md",
"LICENSE*",
"NOTICE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hyperbolic tree tensor engine - hierarchical data storage with depth-independent lookups"
homepage = "https://github.com/nierto/horon-engine"
documentation = "https://docs.rs/horon-engine"
readme = "README.md"
keywords = [
"tree",
"tensor",
"hyperbolic",
"geometry",
"data-structure",
]
categories = [
"data-structures",
"mathematics",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/nierto/horon-engine"
[lib]
name = "horon_engine"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "concurrency_bench"
path = "examples/concurrency_bench.rs"
[[example]]
name = "concurrency_contention"
path = "examples/concurrency_contention.rs"
[[example]]
name = "custom_extension"
path = "examples/custom_extension.rs"
[[example]]
name = "disk_nn_diag"
path = "examples/disk_nn_diag.rs"
[[example]]
name = "spatial_queries"
path = "examples/spatial_queries.rs"
[[example]]
name = "store_wrapper"
path = "examples/store_wrapper.rs"
[[test]]
name = "analytics_conveniences"
path = "tests/analytics_conveniences.rs"
[[test]]
name = "basic_operations"
path = "tests/basic_operations.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "depth"
path = "tests/depth.rs"
[[test]]
name = "embed_existing"
path = "tests/embed_existing.rs"
[[test]]
name = "hardening_regressions"
path = "tests/hardening_regressions.rs"
[[test]]
name = "power_diagram"
path = "tests/power_diagram.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "rainbow_fanout"
path = "tests/rainbow_fanout.rs"
[[test]]
name = "semantic_disk"
path = "tests/semantic_disk.rs"
[[test]]
name = "semantic_index"
path = "tests/semantic_index.rs"
[[test]]
name = "vocabulary"
path = "tests/vocabulary.rs"
[[bench]]
name = "power_diagram"
path = "benches/power_diagram.rs"
harness = false
[[bench]]
name = "semantic"
path = "benches/semantic.rs"
harness = false
[dependencies.dashmap]
version = "5"
[dependencies.g_math]
version = "0.4.31"
[dependencies.hex]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha3]
version = "0.10"
[dev-dependencies.criterion]
version = "0.4"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3.3"
[profile.bench]
opt-level = 3
lto = true
debug = 2
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "abort"
[profile.test]
opt-level = 2