-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (60 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
73 lines (60 loc) · 1.42 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
resolver = "2"
members = [
"crates/lsm",
"crates/esn",
"crates/bridge",
"crates/sensors",
"crates/llm",
"crates/claude-client",
"crates/neurophone-core",
"crates/neurophone-android",
]
[workspace.package]
version = "1.0.0"
edition = "2021"
license = "PMPL-1.0-or-later"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
repository = "https://github.com/hyperpolymath/neurophone"
[workspace.dependencies]
# Core neural network
ndarray = { version = "0.17", features = ["rayon", "serde"] }
ndarray-rand = "0.16"
rand = "0.10"
rand_distr = "0.6"
rayon = "1.12"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
# Async runtime
tokio = { version = "1.52", features = ["full"] }
futures = "0.3"
# HTTP client (for Claude API)
reqwest = { version = "0.13", features = ["json", "rustls"], default-features = false }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Android JNI
jni = "0.22"
# Configuration
config = "0.14"
toml = "0.8"
# Testing
approx = "0.5"
proptest = "1.4"
criterion = { version = "0.8", features = ["html_reports"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.release-android]
inherits = "release"
opt-level = "s"
lto = "thin"