├── .github └── workflows │ └── CICD.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── access.rs └── check.rs ├── fixtures └── check.yaml ├── images └── image-20230116143257983.png └── src ├── access.rs ├── check.rs ├── lib.rs ├── main.rs └── print.rs /.github/workflows/CICD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/.github/workflows/CICD.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/README.md -------------------------------------------------------------------------------- /examples/access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/examples/access.rs -------------------------------------------------------------------------------- /examples/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/examples/check.rs -------------------------------------------------------------------------------- /fixtures/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/fixtures/check.yaml -------------------------------------------------------------------------------- /images/image-20230116143257983.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/images/image-20230116143257983.png -------------------------------------------------------------------------------- /src/access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/src/access.rs -------------------------------------------------------------------------------- /src/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/src/check.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuriLab/rbacr/HEAD/src/print.rs --------------------------------------------------------------------------------