Skip to main content

max / everycycle

830 B · 34 lines History Blame Raw
1 [package]
2 name = "everycycle-appraise"
3 description = "Probe runner, canonical serializer, signer, and CLI for EveryCycle GPU appraisal reports."
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 serde_json = "1"
17 ed25519-dalek = "3"
18 getrandom = "0.4"
19 sha2 = "0.11"
20 base64 = "0.22"
21 ash = "0.38"
22 naga = { version = "30", features = ["wgsl-in", "spv-out"] }
23
24 [[bin]]
25 name = "everycycle-appraise-enumerate"
26 path = "src/bin/enumerate.rs"
27
28 [[bin]]
29 name = "everycycle-appraise-probe"
30 path = "src/bin/probe.rs"
31
32 [lints]
33 workspace = true
34