├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── bench.rs ├── src └── lib.rs └── tests ├── capturing.rs └── extern.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | .*.swp 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/README.md -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/capturing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/tests/capturing.rs -------------------------------------------------------------------------------- /tests/extern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krdln/fomat-macros/HEAD/tests/extern.rs --------------------------------------------------------------------------------