├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── appveyor.yml ├── codegen ├── Cargo.toml └── src │ └── lib.rs ├── example ├── Cargo.toml ├── build.rs ├── data │ ├── empty │ ├── foo │ └── inner │ │ └── boom └── src │ └── main.rs ├── lib ├── Cargo.toml └── src │ └── lib.rs └── rustfmt.toml /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codegen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/codegen/Cargo.toml -------------------------------------------------------------------------------- /codegen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/codegen/src/lib.rs -------------------------------------------------------------------------------- /example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/example/Cargo.toml -------------------------------------------------------------------------------- /example/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/example/build.rs -------------------------------------------------------------------------------- /example/data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/data/foo: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /example/data/inner/boom: -------------------------------------------------------------------------------- 1 | boom 2 | -------------------------------------------------------------------------------- /example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/example/src/main.rs -------------------------------------------------------------------------------- /lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/lib/Cargo.toml -------------------------------------------------------------------------------- /lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/lib/src/lib.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilpner/includedir/HEAD/rustfmt.toml --------------------------------------------------------------------------------