This repository was archived by the owner on Apr 29, 2026. It is now read-only.
forked from Brainchip-Inc/akida_dw_edma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 1.31 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
[workspace]
resolver = "2"
members = [
"crates/akida-chip",
"crates/akida-driver",
"crates/akida-models",
"crates/akida-bench",
"crates/akida-cli",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
repository = "https://github.com/ecoPrimal/rustChip"
authors = ["ecoPrimal <ecoPrimal@pm.me>"]
homepage = "https://github.com/ecoPrimal/rustChip"
# ── shared dependencies ──────────────────────────────────────────────────────
[workspace.dependencies]
# internal
akida-chip = { path = "crates/akida-chip" }
akida-driver = { path = "crates/akida-driver" }
akida-models = { path = "crates/akida-models" }
# error handling
thiserror = "2.0"
anyhow = "1.0"
# logging / tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# data
bytes = "1.11"
bytemuck = { version = "1", features = ["derive"] }
nom = "7"
byteorder = "1"
# async (optional)
tokio = { version = "1", features = ["full"] }
# testing / benchmarking
criterion = { version = "0.5", features = ["html_reports"] }
hex = "0.4"
tempfile = "3"
# CLI
clap = { version = "4", features = ["derive", "color"] }