check-config 0.9.0a1__tar.gz → 0.9.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {check_config-0.9.0a1 → check_config-0.9.1}/CHANGES.md +5 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/Cargo.lock +493 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/Cargo.toml +34 -25
- {check_config-0.9.0a1 → check_config-0.9.1}/PKG-INFO +3 -3
- check_config-0.9.1/docs/checkers.md +466 -0
- check_config-0.9.1/docs/glossary.md +18 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/usage.md +1 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/example/checkers/check-config.toml +32 -7
- check_config-0.9.1/example/checkers/copy.toml +17 -0
- check_config-0.9.1/example/checkers/folder/relative_local_file.toml +3 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/checkers/http_check_config.toml +1 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/example/checkers/http_check_config_relative.toml +1 -1
- check_config-0.9.1/example/checkers/python-logo.svg +265 -0
- check_config-0.9.1/example/checkers/test.tar.gz +0 -0
- check_config-0.9.1/example/checkers/test.zip +0 -0
- check_config-0.9.1/example/checkers/unpack.toml +29 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/expected_output/.bashrc +1 -0
- check_config-0.9.1/example/expected_output/python-logo.svg +265 -0
- check_config-0.9.1/example/expected_output/rust-logo.svg +1 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/expected_output/test.json +1 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/expected_output/test.toml +2 -1
- check_config-0.9.1/example/expected_output/test.yaml +10 -0
- check_config-0.9.1/example/test.sh +10 -0
- check_config-0.9.1/example_checkers/bash.toml +3 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example_checkers/ruff.toml +11 -15
- check_config-0.9.1/example_checkers/ruff_.toml +34 -0
- check_config-0.9.1/installed.toml +36 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/pyproject.toml +22 -24
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/base.rs +27 -10
- check_config-0.9.1/src/checkers/file/dir_copied.rs +201 -0
- check_config-0.9.1/src/checkers/file/dir_present.rs +201 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/entry_absent.rs +7 -7
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/entry_present.rs +84 -3
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/file_absent.rs +11 -9
- check_config-0.9.1/src/checkers/file/file_copied.rs +201 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/file_present.rs +33 -46
- check_config-0.9.1/src/checkers/file/file_unpacked.rs +301 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/key_absent.rs +6 -6
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/key_value_present.rs +9 -12
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/key_value_regex_match.rs +74 -37
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/lines_absent.rs +19 -14
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/lines_present.rs +17 -16
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/file/mod.rs +63 -41
- check_config-0.9.1/src/checkers/git/mod.rs +337 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/mod.rs +44 -3
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/package/package_present.rs +3 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/test_helpers.rs +16 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/utils.rs +18 -25
- {check_config-0.9.0a1 → check_config-0.9.1}/src/cli.rs +15 -17
- {check_config-0.9.0a1 → check_config-0.9.1}/src/integration_test.rs +1 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/mapping/generic.rs +1 -1
- {check_config-0.9.0a1 → check_config-0.9.1}/src/mapping/json.rs +14 -3
- {check_config-0.9.0a1 → check_config-0.9.1}/src/mapping/toml.rs +4 -4
- {check_config-0.9.0a1 → check_config-0.9.1}/src/mapping/yaml.rs +5 -5
- check_config-0.9.1/src/uri.rs +410 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/check-config.toml +2 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/expected_output.json +3 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/expected_output.toml +1 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/expected_output.yaml +1 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/input.json +15 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/input.toml +10 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/1/input.yaml +9 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/check-config.toml +2 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/expected_output.json +3 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/expected_output.toml +1 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/expected_output.yaml +1 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/input.json +15 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/input.toml +10 -0
- check_config-0.9.1/tests/resources/checkers/key_value_regex_matched/2/input.yaml +9 -0
- check_config-0.9.0a1/docs/checkers.md +0 -373
- check_config-0.9.0a1/docs/glossary.md +0 -8
- check_config-0.9.0a1/example/checkers/folder/relative_local_file.toml +0 -3
- check_config-0.9.0a1/example/expected_output/test.yaml +0 -9
- check_config-0.9.0a1/example/test.sh +0 -11
- check_config-0.9.0a1/example_checkers/bash.toml +0 -3
- check_config-0.9.0a1/src/uri.rs +0 -166
- {check_config-0.9.0a1 → check_config-0.9.1}/.gitignore +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/.pre-commit-hook.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/.readthedocs.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/.zellij/env +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/.zellij/layout.kdl +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/LICENSE +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/README.md +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/examples.md +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/features.md +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/index.md +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/installation.md +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/requirements.txt +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/docs/support.md +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/.gitignore +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/check-config-for-usage-doc.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/checkers/folder/local_file.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/expected_output/.gitconfig +0 -0
- /check_config-0.9.0a1/example/input/to_be_removed → /check_config-0.9.1/example/expected_output/created_dir/.gitkeep +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/input/.bashrc +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/input/test.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/input/test.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/input/test.yaml +0 -0
- /check_config-0.9.0a1/src/checkers/schema_validate.rs → /check_config-0.9.1/example/input/to_be_removed +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/pyproject.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example/test_via_pyproject.sh +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example_checkers/black.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example_checkers/mypy.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/example_checkers/python.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/mkdocs.yml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/bin/check-config.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/package/mod.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/checkers/package/package_absent.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/file_types/ini.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/file_types/json.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/file_types/mod.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/file_types/toml.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/file_types/yaml.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/lib.rs +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/src/mapping/mod.rs +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/entry_absent/1/checker.toml → /check_config-0.9.1/tests/resources/checkers/entry_absent/1/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/1/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/1/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/1/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/1/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/1/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/1/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/entry_absent/2/checker.toml → /check_config-0.9.1/tests/resources/checkers/entry_absent/2/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/2/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/2/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/2/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/2/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/2/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_absent/2/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/entry_present/1/checker.toml → /check_config-0.9.1/tests/resources/checkers/entry_present/1/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/1/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/1/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/1/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/1/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/1/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/1/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/entry_present/2/checker.toml → /check_config-0.9.1/tests/resources/checkers/entry_present/2/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/2/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/2/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/2/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/2/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/2/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/entry_present/2/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/key_absent/1/checker.toml → /check_config-0.9.1/tests/resources/checkers/key_absent/1/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_absent/1/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_absent/1/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_absent/1/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_absent/1/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_absent/1/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_absent/1/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/key_value_present/1/checker.toml → /check_config-0.9.1/tests/resources/checkers/key_value_present/1/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/1/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/1/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/1/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/1/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/1/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/1/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/key_value_present/2/checker.toml → /check_config-0.9.1/tests/resources/checkers/key_value_present/2/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/2/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/2/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/2/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/2/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/2/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_present/2/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/key_value_regex_match/1/checker.toml → /check_config-0.9.1/tests/resources/checkers/key_value_regex_match/1/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/1/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/1/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/1/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/1/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/1/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/1/input.yaml +0 -0
- /check_config-0.9.0a1/tests/resources/checkers/key_value_regex_match/2/checker.toml → /check_config-0.9.1/tests/resources/checkers/key_value_regex_match/2/check-config.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/2/expected_output.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/2/expected_output.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/2/expected_output.yaml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/2/input.json +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/2/input.toml +0 -0
- {check_config-0.9.0a1 → check_config-0.9.1}/tests/resources/checkers/key_value_regex_match/2/input.yaml +0 -0