├── .deepsource.toml ├── .editorconfig ├── .github ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── SECURITY.md ├── dependabot.yml ├── funding.yml └── workflows │ ├── audit.yml │ ├── check.yml │ ├── coverage.yml │ ├── document.yml │ ├── lint.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── TEMPLATE.md ├── benches └── criterion.rs ├── deny.toml ├── examples ├── example.rs ├── generate_from_args.rs ├── generate_from_config.rs ├── generate_from_csv.rs ├── generate_from_json.rs ├── generate_from_toml.rs ├── generate_from_yaml.rs ├── get_csv_field.rs ├── get_json_field.rs └── get_yaml_field.rs ├── rustfmt.toml ├── src ├── args.rs ├── cli.rs ├── generator.rs ├── generators │ ├── args.rs │ ├── ascii.rs │ ├── csv.rs │ ├── ini.rs │ ├── json.rs │ ├── mod.rs │ ├── toml.rs │ └── yaml.rs ├── interface.rs ├── lib.rs ├── macros │ ├── ascii_macros.rs │ ├── directory_macros.rs │ ├── file_macros.rs │ ├── generator_macros.rs │ ├── log_macros.rs │ ├── mod.rs │ └── utility_macros.rs ├── main.rs ├── models │ ├── error_ascii_art.rs │ ├── mod.rs │ └── model_params.rs ├── utilities │ ├── directory.rs │ ├── mod.rs │ └── uuid.rs └── utils.rs ├── template ├── AUTHORS.tpl ├── CONTRIBUTING.tpl ├── Cargo.tpl ├── README.tpl ├── TEMPLATE.tpl ├── build.tpl ├── ci.tpl ├── criterion.tpl ├── deepsource.tpl ├── deny.tpl ├── example.tpl ├── github │ └── workflows │ │ ├── audit.tpl │ │ ├── check.tpl │ │ ├── coverage.tpl │ │ ├── document.tpl │ │ ├── lint.tpl │ │ ├── release.tpl │ │ └── test.tpl ├── gitignore.tpl ├── lib.tpl ├── macros.tpl ├── main.tpl ├── rustfmt.tpl ├── test.tpl └── test_test.tpl └── tests ├── data ├── mylibrary.csv ├── mylibrary.ini ├── mylibrary.json ├── mylibrary.toml └── mylibrary.yaml ├── generators ├── mod.rs ├── test_args.rs ├── test_ascii.rs ├── test_csv.rs ├── test_ini.rs ├── test_json.rs ├── test_toml.rs └── test_yaml.rs ├── macros ├── mod.rs ├── test_ascii_macros.rs ├── test_directory_macros.rs ├── test_file_macros.rs ├── test_generator_macros.rs ├── test_log_macros.rs └── test_utility_macros.rs ├── mod.rs ├── models ├── mod.rs ├── test_error_ascii_art.rs └── test_model_params.rs ├── test_cli.rs ├── test_generator.rs ├── test_interface.rs ├── test_utils.rs └── utilities ├── mod.rs ├── test_directory.rs └── test_uuid.rs /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @sebastienrousseau/libmake -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: sebastienrousseau 2 | custom: https://paypal.me/wwdseb 3 | -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/document.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/document.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/README.md -------------------------------------------------------------------------------- /TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/TEMPLATE.md -------------------------------------------------------------------------------- /benches/criterion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/benches/criterion.rs -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/deny.toml -------------------------------------------------------------------------------- /examples/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/example.rs -------------------------------------------------------------------------------- /examples/generate_from_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/generate_from_args.rs -------------------------------------------------------------------------------- /examples/generate_from_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/generate_from_config.rs -------------------------------------------------------------------------------- /examples/generate_from_csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/generate_from_csv.rs -------------------------------------------------------------------------------- /examples/generate_from_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/generate_from_json.rs -------------------------------------------------------------------------------- /examples/generate_from_toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/generate_from_toml.rs -------------------------------------------------------------------------------- /examples/generate_from_yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/generate_from_yaml.rs -------------------------------------------------------------------------------- /examples/get_csv_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/get_csv_field.rs -------------------------------------------------------------------------------- /examples/get_json_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/get_json_field.rs -------------------------------------------------------------------------------- /examples/get_yaml_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/examples/get_yaml_field.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generator.rs -------------------------------------------------------------------------------- /src/generators/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/args.rs -------------------------------------------------------------------------------- /src/generators/ascii.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/ascii.rs -------------------------------------------------------------------------------- /src/generators/csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/csv.rs -------------------------------------------------------------------------------- /src/generators/ini.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/ini.rs -------------------------------------------------------------------------------- /src/generators/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/json.rs -------------------------------------------------------------------------------- /src/generators/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/mod.rs -------------------------------------------------------------------------------- /src/generators/toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/toml.rs -------------------------------------------------------------------------------- /src/generators/yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/generators/yaml.rs -------------------------------------------------------------------------------- /src/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/interface.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros/ascii_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/ascii_macros.rs -------------------------------------------------------------------------------- /src/macros/directory_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/directory_macros.rs -------------------------------------------------------------------------------- /src/macros/file_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/file_macros.rs -------------------------------------------------------------------------------- /src/macros/generator_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/generator_macros.rs -------------------------------------------------------------------------------- /src/macros/log_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/log_macros.rs -------------------------------------------------------------------------------- /src/macros/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/mod.rs -------------------------------------------------------------------------------- /src/macros/utility_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/macros/utility_macros.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/models/error_ascii_art.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/models/error_ascii_art.rs -------------------------------------------------------------------------------- /src/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/models/mod.rs -------------------------------------------------------------------------------- /src/models/model_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/models/model_params.rs -------------------------------------------------------------------------------- /src/utilities/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/utilities/directory.rs -------------------------------------------------------------------------------- /src/utilities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/utilities/mod.rs -------------------------------------------------------------------------------- /src/utilities/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/utilities/uuid.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/src/utils.rs -------------------------------------------------------------------------------- /template/AUTHORS.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/AUTHORS.tpl -------------------------------------------------------------------------------- /template/CONTRIBUTING.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/CONTRIBUTING.tpl -------------------------------------------------------------------------------- /template/Cargo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/Cargo.tpl -------------------------------------------------------------------------------- /template/README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/README.tpl -------------------------------------------------------------------------------- /template/TEMPLATE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/TEMPLATE.tpl -------------------------------------------------------------------------------- /template/build.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/build.tpl -------------------------------------------------------------------------------- /template/ci.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/ci.tpl -------------------------------------------------------------------------------- /template/criterion.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/criterion.tpl -------------------------------------------------------------------------------- /template/deepsource.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/deepsource.tpl -------------------------------------------------------------------------------- /template/deny.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/deny.tpl -------------------------------------------------------------------------------- /template/example.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/example.tpl -------------------------------------------------------------------------------- /template/github/workflows/audit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/audit.tpl -------------------------------------------------------------------------------- /template/github/workflows/check.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/check.tpl -------------------------------------------------------------------------------- /template/github/workflows/coverage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/coverage.tpl -------------------------------------------------------------------------------- /template/github/workflows/document.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/document.tpl -------------------------------------------------------------------------------- /template/github/workflows/lint.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/lint.tpl -------------------------------------------------------------------------------- /template/github/workflows/release.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/release.tpl -------------------------------------------------------------------------------- /template/github/workflows/test.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/github/workflows/test.tpl -------------------------------------------------------------------------------- /template/gitignore.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/gitignore.tpl -------------------------------------------------------------------------------- /template/lib.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/lib.tpl -------------------------------------------------------------------------------- /template/macros.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/macros.tpl -------------------------------------------------------------------------------- /template/main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/main.tpl -------------------------------------------------------------------------------- /template/rustfmt.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/rustfmt.tpl -------------------------------------------------------------------------------- /template/test.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/test.tpl -------------------------------------------------------------------------------- /template/test_test.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/template/test_test.tpl -------------------------------------------------------------------------------- /tests/data/mylibrary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/data/mylibrary.csv -------------------------------------------------------------------------------- /tests/data/mylibrary.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/data/mylibrary.ini -------------------------------------------------------------------------------- /tests/data/mylibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/data/mylibrary.json -------------------------------------------------------------------------------- /tests/data/mylibrary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/data/mylibrary.toml -------------------------------------------------------------------------------- /tests/data/mylibrary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/data/mylibrary.yaml -------------------------------------------------------------------------------- /tests/generators/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/mod.rs -------------------------------------------------------------------------------- /tests/generators/test_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_args.rs -------------------------------------------------------------------------------- /tests/generators/test_ascii.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_ascii.rs -------------------------------------------------------------------------------- /tests/generators/test_csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_csv.rs -------------------------------------------------------------------------------- /tests/generators/test_ini.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_ini.rs -------------------------------------------------------------------------------- /tests/generators/test_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_json.rs -------------------------------------------------------------------------------- /tests/generators/test_toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_toml.rs -------------------------------------------------------------------------------- /tests/generators/test_yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/generators/test_yaml.rs -------------------------------------------------------------------------------- /tests/macros/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/mod.rs -------------------------------------------------------------------------------- /tests/macros/test_ascii_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/test_ascii_macros.rs -------------------------------------------------------------------------------- /tests/macros/test_directory_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/test_directory_macros.rs -------------------------------------------------------------------------------- /tests/macros/test_file_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/test_file_macros.rs -------------------------------------------------------------------------------- /tests/macros/test_generator_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/test_generator_macros.rs -------------------------------------------------------------------------------- /tests/macros/test_log_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/test_log_macros.rs -------------------------------------------------------------------------------- /tests/macros/test_utility_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/macros/test_utility_macros.rs -------------------------------------------------------------------------------- /tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/mod.rs -------------------------------------------------------------------------------- /tests/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/models/mod.rs -------------------------------------------------------------------------------- /tests/models/test_error_ascii_art.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/models/test_error_ascii_art.rs -------------------------------------------------------------------------------- /tests/models/test_model_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/models/test_model_params.rs -------------------------------------------------------------------------------- /tests/test_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/test_cli.rs -------------------------------------------------------------------------------- /tests/test_generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/test_generator.rs -------------------------------------------------------------------------------- /tests/test_interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/test_interface.rs -------------------------------------------------------------------------------- /tests/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/test_utils.rs -------------------------------------------------------------------------------- /tests/utilities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/utilities/mod.rs -------------------------------------------------------------------------------- /tests/utilities/test_directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/utilities/test_directory.rs -------------------------------------------------------------------------------- /tests/utilities/test_uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienrousseau/libmake/HEAD/tests/utilities/test_uuid.rs --------------------------------------------------------------------------------