This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Description
Here are the steps to reproduce:
- Clone gdal
- Create a new Rust project next to the gdal folder
- Edit the new project's
Cargo.toml file to include this dependency: gdal = {path = "../gdal"}
- Add an import for gdal in
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 the target/debug/deps folder.