horon-engine 0.7.0

Hyperbolic tree tensor engine - hierarchical data storage with depth-independent lookups
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "horon-engine"
version = "0.7.0"
authors = ["Niels Erik Toren"]
build = false
include = [
    "src/**",
    "benches/**",
    "examples/**",
    "tests/**",
    "README.md",
    "CHANGELOG.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 = "semantic_query_cost"
path = "examples/semantic_query_cost.rs"

[[example]]
name = "spatial_queries"
path = "examples/spatial_queries.rs"

[[example]]
name = "store_wrapper"
path = "examples/store_wrapper.rs"

[[test]]
name = "adversarial_inputs"
path = "tests/adversarial_inputs.rs"

[[test]]
name = "analytics_conveniences"
path = "tests/analytics_conveniences.rs"

[[test]]
name = "basic_operations"
path = "tests/basic_operations.rs"

[[test]]
name = "cell_index_exactness"
path = "tests/cell_index_exactness.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 = "nearest_exactness"
path = "tests/nearest_exactness.rs"

[[test]]
name = "node_identity"
path = "tests/node_identity.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 = "spatial_queries"
path = "tests/spatial_queries.rs"

[[test]]
name = "vocabulary"
path = "tests/vocabulary.rs"

[[bench]]
name = "semantic"
path = "benches/semantic.rs"
harness = false

[[bench]]
name = "spatial_queries"
path = "benches/spatial_queries.rs"
harness = false

[dependencies.dashmap]
version = "5"

[dependencies.g_math]
version = "0.5.0"

[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