I have a project which contains three files main.rs,bytes.rs and provider.rs. I have created mod.rs file and I have included both crate bytes.rs and provider.rs as shown below. whenever I am trying to include mod bytes
inside the provider.rs, I get the error, please help me to sort out this.
error: file not found for module
bytes
---projectA
+ src
-- main.rs
-- mod.rs
-- bytes.rs
-- provider.rs