├── .editorconfig ├── .github └── workflows │ └── postfix-macros.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── url-parser.rs ├── postfix-macros-impl ├── Cargo.toml └── lib.rs ├── src └── lib.rs └── tests ├── builtin.rs ├── expr_end.rs ├── pass_to.rs └── simple.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/postfix-macros.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/.github/workflows/postfix-macros.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | *.rs.bk 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/README.md -------------------------------------------------------------------------------- /examples/url-parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/examples/url-parser.rs -------------------------------------------------------------------------------- /postfix-macros-impl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/postfix-macros-impl/Cargo.toml -------------------------------------------------------------------------------- /postfix-macros-impl/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/postfix-macros-impl/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/builtin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/tests/builtin.rs -------------------------------------------------------------------------------- /tests/expr_end.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/tests/expr_end.rs -------------------------------------------------------------------------------- /tests/pass_to.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/tests/pass_to.rs -------------------------------------------------------------------------------- /tests/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/est31/postfix-macros/HEAD/tests/simple.rs --------------------------------------------------------------------------------