├── .github └── workflows │ └── main.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.toml ├── LICENSE_APACHE.md ├── LICENSE_MIT.md ├── README.md └── src └── lib.rs /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE_APACHE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/LICENSE_APACHE.md -------------------------------------------------------------------------------- /LICENSE_MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/LICENSE_MIT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-F-Bryan/non-trivial-macros/HEAD/src/lib.rs --------------------------------------------------------------------------------