| 1 |
[package] |
| 2 |
name = "everycycle-runtime" |
| 3 |
description = "EveryCycle inference runtime: model execution, heterogeneous layer placement, kernel dispatch." |
| 4 |
version.workspace = true |
| 5 |
edition.workspace = true |
| 6 |
rust-version.workspace = true |
| 7 |
license.workspace = true |
| 8 |
authors.workspace = true |
| 9 |
repository.workspace = true |
| 10 |
# The unit of publication is the repo, not the crates (decided 2026-08-06). |
| 11 |
publish = false |
| 12 |
|
| 13 |
[dependencies] |
| 14 |
everycycle-hal = { path = "../hal" } |
| 15 |
serde = { version = "1", features = ["derive"] } |
| 16 |
|
| 17 |
[lints] |
| 18 |
workspace = true |
| 19 |
|