[package]
edition = "2021"
name = "horon"
version = "0.14.1"
authors = ["Niels Erik Toren"]
build = false
include = [
"src/**",
"benches/**",
"examples/**",
"tests/**",
"docs/HTT_FORMAT.md",
"README.md",
"LICENSE*",
"NOTICE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Horon - deterministic hierarchical data store in a single .htt file, with WAL durability, compression, and geometric access control"
homepage = "https://github.com/nierto/horon"
documentation = "https://docs.rs/horon"
readme = "README.md"
keywords = [
"persistence",
"wal",
"hyperbolic",
"acl",
"storage",
]
categories = [
"data-structures",
"filesystem",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/nierto/horon"
[features]
import = [
"dep:csv",
"dep:serde_json",
"dep:serde_yaml",
"dep:rusqlite",
]
[lib]
name = "horon"
path = "src/lib.rs"
[[bin]]
name = "htt"
path = "src/bin/htt.rs"
required-features = ["import"]
[[example]]
name = "dim_slice_recall"
path = "examples/dim_slice_recall.rs"
[[example]]
name = "gen_corpus"
path = "examples/gen_corpus.rs"
[[example]]
name = "gen_fixture"
path = "examples/gen_fixture.rs"
[[example]]
name = "geostore"
path = "examples/geostore.rs"
[[example]]
name = "lifecycle"
path = "examples/lifecycle.rs"
[[example]]
name = "live_writer"
path = "examples/live_writer.rs"
[[example]]
name = "lock_probe"
path = "examples/lock_probe.rs"
[[example]]
name = "put_rate"
path = "examples/put_rate.rs"
[[example]]
name = "put_throughput"
path = "examples/put_throughput.rs"
[[example]]
name = "reader_rss"
path = "examples/reader_rss.rs"
[[example]]
name = "scan_counts"
path = "examples/scan_counts.rs"
[[test]]
name = "api_surface"
path = "tests/api_surface.rs"
[[test]]
name = "comprehensive"
path = "tests/comprehensive.rs"
[[test]]
name = "concurrent_readers"
path = "tests/concurrent_readers.rs"
[[test]]
name = "corpus_conformance"
path = "tests/corpus_conformance.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "durability"
path = "tests/durability.rs"
[[test]]
name = "embed_lazy"
path = "tests/embed_lazy.rs"
[[test]]
name = "hardening_regressions"
path = "tests/hardening_regressions.rs"
[[test]]
name = "hilbert_locality"
path = "tests/hilbert_locality.rs"
[[test]]
name = "meaning_addressed"
path = "tests/meaning_addressed.rs"
[[test]]
name = "partial_reader"
path = "tests/partial_reader.rs"
[[test]]
name = "quantized"
path = "tests/quantized.rs"
[[test]]
name = "replication"
path = "tests/replication.rs"
[[test]]
name = "semantic_disk_temporal"
path = "tests/semantic_disk_temporal.rs"
[[test]]
name = "semantic_unset"
path = "tests/semantic_unset.rs"
[[test]]
name = "temporal"
path = "tests/temporal.rs"
[[test]]
name = "vocabulary"
path = "tests/vocabulary.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.crc32fast]
version = "1.4"
[dependencies.g_math]
version = "0.6"
[dependencies.horon-engine]
version = "0.7.1"
[dependencies.log]
version = "0.4"
[dependencies.memmap2]
version = "0.9"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3.3"
[target."cfg(unix)".dependencies.csv]
version = "1.3"
optional = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
optional = true
[target."cfg(unix)".dependencies.serde_json]
version = "1"
optional = true
[target."cfg(unix)".dependencies.serde_yaml]
version = "0.9"
optional = true
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.test]
opt-level = 2