The workspace Cargo.toml lists two external git dependencies that do not yet exist:
mohu-compute = { git = "https://github.com/mohu-org/mohu-compute" }
mohu-linalg = { git = "https://github.com/mohu-org/mohu-linalg" }
Any cargo build --workspace or cargo check run will attempt to fetch these repos and fail with a git error when network access is available, or resolve to a stale lockfile entry in CI.
These entries should be removed from the workspace dependency table until the respective repositories exist. Crates that will eventually depend on them should use feature flags or optional dependencies in the interim.
Signed-off-by: mohu-org atrancendentbeing@gmail.com
The workspace
Cargo.tomllists two external git dependencies that do not yet exist:Any
cargo build --workspaceorcargo checkrun will attempt to fetch these repos and fail with a git error when network access is available, or resolve to a stale lockfile entry in CI.These entries should be removed from the workspace dependency table until the respective repositories exist. Crates that will eventually depend on them should use feature flags or optional dependencies in the interim.
Signed-off-by: mohu-org atrancendentbeing@gmail.com