-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 863 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "arms-core"
version = "0.1.0"
edition = "2021"
authors = ["Automate Capture LLC <research@automate-capture.com>"]
description = "ARMS: Attention Reasoning Memory Store - A spatial memory fabric for AI. Position IS relationship."
license = "MIT"
repository = "https://github.com/automate-capture/arms"
homepage = "https://research.automate-capture.com/arms"
documentation = "https://docs.rs/arms"
readme = "README.md"
keywords = ["memory", "spatial-database", "ai", "embeddings", "vector-search"]
categories = ["database", "science", "algorithms"]
exclude = [
"target/",
".venv/",
".git/",
".claude/",
"paper/",
"images/",
".env",
]
[lib]
name = "arms"
path = "src/lib.rs"
[dependencies]
thiserror = "1.0"
[dev-dependencies]
criterion = "0.5"
[features]
default = []
[profile.release]
lto = true
codegen-units = 1