Skip to content

Commit

Permalink
documentation: add error when Cargo.toml is missconfigured
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Sopena Ballesteros committed Sep 29, 2024
1 parent 21745c3 commit 24c0922
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,3 +240,22 @@ To update the boot image based on an image id for all the nodes in a cluster `ma
2. Check manta is using the right site `manta config show`. This command should ask user to authenticate again since the auth token was deleted in the previous command


---

**Q: error: failed to load manifest for dependency `mesa`**

**A:**

This is caused because cargo tries to access mesa library code from local filesystem instead of crates.io repository. To fix this, make sure mesa dependency in Cargo.toml looks as below:

```
...
[dependencies]
# mesa = "0.37.7"
mesa = { path = "../mesa" } # Only for development purposes
...
```

0 comments on commit 24c0922

Please sign in to comment.