Can someone familiar with #rustlang on #fedora help me with something please?
I'm trying to work out how to build my project against the dnf installable rust dependencies. I've been trying to google how this is supposed to work but without any success.
I'm considering maybe using meson to try and detect locally installed dependencies?
Not sure what the best way forward is! Does anyone have any best practices?
What I have done so far is change my cargo.toml to look like this:
```
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "/usr/share/cargo/registry"
[net]
offline = true
```
After installing the dependencies for my project via dnf it seems to build and run fine again.