[package]
edition = "2021"
rust-version = "1.95"
name = "hippmem-write"
version = "0.1.0"
authors = ["hippmem <hippmem@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Write engine for HIPPMEM — AssociationKeys generation, multi-dimensional candidate discovery, association scoring and edge creation"
homepage = "https://github.com/hippmem/hippmem"
documentation = "https://docs.rs/hippmem-write"
readme = false
keywords = [
"memory",
"associative",
"knowledge-graph",
"extraction",
"scoring",
]
categories = [
"algorithms",
"text-processing",
]
license = "AGPL-3.0-only"
repository = "https://github.com/hippmem/hippmem"
[lib]
name = "hippmem_write"
path = "src/lib.rs"
[[test]]
name = "candidates"
path = "tests/candidates.rs"
[[test]]
name = "edges"
path = "tests/edges.rs"
[[test]]
name = "enriched_index"
path = "tests/enriched_index.rs"
[[test]]
name = "keys"
path = "tests/keys.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "scoring"
path = "tests/scoring.rs"
[dependencies.hippmem-core]
version = "0.1.0"
[dependencies.hippmem-model]
version = "0.1.0"
[dependencies.hippmem-store]
version = "0.1.0"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"