automod icon indicating copy to clipboard operation
automod copied to clipboard

Pull in every source file in a directory as a module

Results 6 automod issues
Sort by recently updated
recently updated
newest added

After searching in the issues, I found this feature in issue #6. Currently this is not mentioned in the README at all. This PR adds a corresponding example.

This works great for all files in a directory, but I have a directory structure like this: * `src` * `items`

I noticed that if I add a new file after a build, the new file would not be included in the next run. I have to manually clean the build...

let's say you are in a directory of your project which may includes files named like this `grpc.connect.udp.rs` , `grpc.connect.tcp.rs` can we have them indexed ?

hello ! with this directory sturcture: ``` foo.rs foo/ - a.rs - b.rs ``` having a `automod::dir!("src/foo")` gives `error: couldn't read crate/src/a.rs: No such file or directory (os error 2)`...