├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── recap-derive ├── Cargo.toml └── src │ └── lib.rs ├── recap ├── Cargo.toml ├── examples │ └── log.rs └── src │ └── lib.rs └── rustfmt.toml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/README.md -------------------------------------------------------------------------------- /recap-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/recap-derive/Cargo.toml -------------------------------------------------------------------------------- /recap-derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/recap-derive/src/lib.rs -------------------------------------------------------------------------------- /recap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/recap/Cargo.toml -------------------------------------------------------------------------------- /recap/examples/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/recap/examples/log.rs -------------------------------------------------------------------------------- /recap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/recap/src/lib.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softprops/recap/HEAD/rustfmt.toml --------------------------------------------------------------------------------