[package]
edition = "2021"
name = "penrose-memory"
version = "1.1.0"
build = false
exclude = [
"/pyproject.toml",
"/penrose_memory/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Aperiodic memory palace for AI agents with tile lifecycle, simulation-first predictions, and Lamport clocks."
readme = "README.md"
keywords = [
"penrose",
"memory",
"ai",
"tiling",
"aperiodic",
]
categories = [
"data-structures",
"science",
]
license = "MIT"
repository = "https://github.com/SuperInstance/penrose-memory"
[lib]
name = "penrose_memory"
path = "src/lib.rs"
[[bench]]
name = "simd_compare"
path = "benches/simd_compare.rs"
harness = false
[[bench]]
name = "tensor_tile_bench"
path = "benches/tensor_tile_bench.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.rand]
version = "0.8"