-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (43 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
55 lines (43 loc) · 1.05 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "aura-core"
version = "0.1.0"
edition = "2021"
description = "Ultra-fast cognitive memory engine based on Sparse Distributed Representations (SDR)"
license = "Apache-2.0"
repository = "https://github.com/AuraMemory/aura-core"
keywords = ["sdr", "memory", "ai", "cognitive", "sparse-distributed-representation"]
categories = ["algorithms", "data-structures", "science"]
readme = "README.md"
[lib]
name = "aura_core"
crate-type = ["rlib"]
[features]
default = []
# Reduced SDR resolution for embedded/IoT devices (16k bits vs 256k)
lite = []
[dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
# Data Structures & Indexing
roaring = "0.10"
# Concurrency
parking_lot = "0.12"
# Binary I/O
byteorder = "1.5"
# Error Handling
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# Hashing
xxhash-rust = { version = "0.8", features = ["xxh3"] }
[dev-dependencies]
tempfile = "3.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true