├── .cargo └── config.toml ├── .github ├── dependabot.yaml └── workflows │ └── release.yml ├── .gitignore ├── .hoox.yaml ├── .neomake.yaml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── docs ├── README.md └── agree.png ├── rustfmt.toml ├── src ├── archive.rs ├── args.rs ├── blueprint.rs ├── engine.rs ├── error.rs ├── main.rs └── reference.rs └── test ├── .gitignore └── blueprint.yaml /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | target/ 3 | -------------------------------------------------------------------------------- /.hoox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/.hoox.yaml -------------------------------------------------------------------------------- /.neomake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/.neomake.yaml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/agree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/docs/agree.png -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/archive.rs -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/blueprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/blueprint.rs -------------------------------------------------------------------------------- /src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/engine.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/src/reference.rs -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.share 2 | -------------------------------------------------------------------------------- /test/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cchexcode/agree/HEAD/test/blueprint.yaml --------------------------------------------------------------------------------