Some README links point at paths that no longer exist after crate/module moves.
Examples from the current next branch:
core/README.md links to ./src/program.rs, ./src/kernel.rs, and ./src/stack/*, but those items now live under core/src/program/.
miden-vm/README.md links to ../assembly, but the assembly crate is under crates/assembly.
crates/lib/core/README.md links to ./docs/pcs/frie2f4.md and ./docs/stark/mod.md, while the existing files are ./docs/pcs/fri/frie2f4.md and ./docs/stark.md.
- The imported crate READMEs for
serde-utils and crypto-derive link to license files one directory too shallow.
These are local relative links, so they are easy to miss in the current link checker because file:// targets are excluded.
Some README links point at paths that no longer exist after crate/module moves.
Examples from the current
nextbranch:core/README.mdlinks to./src/program.rs,./src/kernel.rs, and./src/stack/*, but those items now live undercore/src/program/.miden-vm/README.mdlinks to../assembly, but the assembly crate is undercrates/assembly.crates/lib/core/README.mdlinks to./docs/pcs/frie2f4.mdand./docs/stark/mod.md, while the existing files are./docs/pcs/fri/frie2f4.mdand./docs/stark.md.serde-utilsandcrypto-derivelink to license files one directory too shallow.These are local relative links, so they are easy to miss in the current link checker because
file://targets are excluded.