├── .gitignore ├── .rustfmt.toml ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── format-all.sh ├── publish-all.sh ├── src ├── checker.rs ├── error.rs ├── explain.rs ├── lib.rs ├── pattern.rs └── variable.rs ├── test-all.sh └── tests └── basic.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/README.md -------------------------------------------------------------------------------- /format-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/format-all.sh -------------------------------------------------------------------------------- /publish-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/publish-all.sh -------------------------------------------------------------------------------- /src/checker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/src/checker.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/explain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/src/explain.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/src/pattern.rs -------------------------------------------------------------------------------- /src/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/src/variable.rs -------------------------------------------------------------------------------- /test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/test-all.sh -------------------------------------------------------------------------------- /tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/filecheck/HEAD/tests/basic.rs --------------------------------------------------------------------------------