This repository has been archived by the owner on Nov 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 165
Missing .rmeta for local dependency #949
Comments
Would you mind giving the https://marketplace.visualstudio.com/items?itemName=matklad.rust-analyzer extension a try? |
Thanks, I'll give it a go. |
See https://blog.rust-lang.org/2022/02/21/rust-analyzer-joins-rust-org.html for context. IIRC, RA has some problems with the Also, hello from GeoRust 😄. |
Hmm... bummer that rust-analyzer seems to ignore my tab size setting. |
rust-lang/rust-analyzer#1191, but you should enable format on save, make a EDIT: well, I can see how that could be quite annoying. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Here are the steps to reproduce:
Cargo.toml
file to include this dependency:gdal = {path = "../gdal"}
main.rs
. Example:use gdal::*;
Here's the error that I see in VSCode:
If I look in the
target/rls/debug/deps
folder then, sure enough, the .rmeta (and .rlib) files are missing for gdal. The project does build normally and those files are present in thetarget/debug/deps
folder.The text was updated successfully, but these errors were encountered: