main
tag: launch-2026-06-01
tag: magicmirror-v0.1.1
tag: magicmirror-v0.3.0
tag: mnw-cli-v0.1.2
tag: mnw-cli-v0.1.3
tag: mnw-cli-v0.1.4
tag: pom-v0.4.1
tag: pom-v0.4.2
tag: pom-v0.4.3
tag: pom-v0.4.4
tag: pom-v0.4.5
tag: wam-v0.3.0
tag: wam-v0.3.1
Files
Commits
Tags
Notes
Issues
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]