├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── poems.rs ├── static │ ├── poems │ │ ├── keats │ │ │ ├── ode-on-a-grecian-urn.txt │ │ │ ├── ode-to-a-nightingale.txt │ │ │ ├── ode-to-psyche.txt │ │ │ └── to-autumn.txt │ │ └── nash.txt │ └── web │ │ └── my.html └── web.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/README.md -------------------------------------------------------------------------------- /examples/poems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/poems.rs -------------------------------------------------------------------------------- /examples/static/poems/keats/ode-on-a-grecian-urn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/static/poems/keats/ode-on-a-grecian-urn.txt -------------------------------------------------------------------------------- /examples/static/poems/keats/ode-to-a-nightingale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/static/poems/keats/ode-to-a-nightingale.txt -------------------------------------------------------------------------------- /examples/static/poems/keats/ode-to-psyche.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/static/poems/keats/ode-to-psyche.txt -------------------------------------------------------------------------------- /examples/static/poems/keats/to-autumn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/static/poems/keats/to-autumn.txt -------------------------------------------------------------------------------- /examples/static/poems/nash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/static/poems/nash.txt -------------------------------------------------------------------------------- /examples/static/web/my.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/static/web/my.html -------------------------------------------------------------------------------- /examples/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/examples/web.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdyer/include-dir-macro/HEAD/src/lib.rs --------------------------------------------------------------------------------