You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to rust, so maybe I'm doing something silly, but I seem to be having troubles getting flycheck-rust to recognize any external dependencies whatsoever. I've put together a minimal demo repo that shows the problem for a crates.io dependency as well as a local dependency: https://github.com/mgalgs/flycheck-rust-test
In frsub/lib.rs in that repo, I'm trying to extern a crate from crates.io which is present in my Cargo.toml, but flycheck-rust complains about not being able to find it (even after running cargo build from the frsub directory).
In src/main.rs in that repo, I'm trying to extern in the frsub crate by path (see Cargo.toml at the top-level).
What am I missing here?
The text was updated successfully, but these errors were encountered:
I'm new to rust, so maybe I'm doing something silly, but I seem to be having troubles getting
flycheck-rust
to recognize any external dependencies whatsoever. I've put together a minimal demo repo that shows the problem for a crates.io dependency as well as a local dependency: https://github.com/mgalgs/flycheck-rust-testIn
frsub/lib.rs
in that repo, I'm trying to extern a crate from crates.io which is present in myCargo.toml
, but flycheck-rust complains about not being able to find it (even after runningcargo build
from thefrsub
directory).In
src/main.rs
in that repo, I'm trying to extern in thefrsub
crate by path (seeCargo.toml
at the top-level).What am I missing here?
The text was updated successfully, but these errors were encountered: