sando: note MakeMachine BOM moved to everycycle repo
The hardware BOM previously tracked at sando/plans/mm-hardware-bom.md is now at
~/Code/everycycle/docs/hardware/mm-v1-bom.md. Update the cross-reference note in
sando/todo.md to point at the new location.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3 files changed,
+5 insertions,
-4 deletions
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "makenotwork"
|
| 3 |
|
- |
version = "0.9.4"
|
|
3 |
+ |
version = "0.9.5"
|
| 4 |
4 |
|
edition = "2024"
|
| 5 |
5 |
|
license-file = "LICENSE"
|
| 6 |
6 |
|
|
| 158 |
158 |
|
mod tests {
|
| 159 |
159 |
|
use super::*;
|
| 160 |
160 |
|
|
| 161 |
|
- |
const ASSUMPTIONS_PATH: &str = "../docs/business/assumptions.toml";
|
|
161 |
+ |
const ASSUMPTIONS_PATH: &str = "docs/business/assumptions.toml";
|
| 162 |
162 |
|
|
| 163 |
163 |
|
/// Guards every key TierPrices reads. If a future toml edit removes one of
|
| 164 |
164 |
|
/// these or flips its type, the panic in `from_assumptions` will fire at
|
| 10 |
10 |
|
use docengine::Assumptions;
|
| 11 |
11 |
|
|
| 12 |
12 |
|
// Canonical assumptions.toml ships with the repo at server/docs/business/.
|
| 13 |
|
- |
// Test runs from the server crate's cwd; ../ gets to MNW/server/.
|
| 14 |
|
- |
const ASSUMPTIONS_PATH: &str = "../docs/business/assumptions.toml";
|
|
13 |
+ |
// Cargo runs tests with cwd = crate manifest dir (MNW/server/), so the
|
|
14 |
+ |
// relative path is just docs/... — no traversal.
|
|
15 |
+ |
const ASSUMPTIONS_PATH: &str = "docs/business/assumptions.toml";
|
| 15 |
16 |
|
const SITE_DOCS_PATH: &str = "site-docs/public";
|
| 16 |
17 |
|
|
| 17 |
18 |
|
#[test]
|