[package]
edition = "2021"
rust-version = "1.95"
name = "hippmem-core"
version = "0.1.0"
authors = ["hippmem <hippmem@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core domain types for HIPPMEM — MemoryUnit, AssociationLink, ActivationState, Clock/Rng traits, base error types"
homepage = "https://github.com/hippmem/hippmem"
documentation = "https://docs.rs/hippmem-core"
readme = false
keywords = [
"memory",
"ai",
"agent",
"associative",
"data-model",
]
categories = ["data-structures"]
license = "Apache-2.0"
repository = "https://github.com/hippmem/hippmem"
[lib]
name = "hippmem_core"
path = "src/lib.rs"
[[test]]
name = "clock_rng"
path = "tests/clock_rng.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "enums"
path = "tests/enums.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "hash_tokenize"
path = "tests/hash_tokenize.rs"
[[test]]
name = "model_roundtrip"
path = "tests/model_roundtrip.rs"
[[test]]
name = "newtypes"
path = "tests/newtypes.rs"
[dependencies.figment]
version = "0.10"
features = [
"toml",
"env",
]
[dependencies.jieba-rs]
version = "0.7"
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = ["serde"]
[dependencies.ulid]
version = "1"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dev-dependencies.bincode]
version = "2"
features = ["serde"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.toml]
version = "0.8"