├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── overflower-plugin ├── Cargo.toml └── src │ └── lib.rs └── overflower ├── Cargo.toml ├── src └── lib.rs └── tests ├── macro.rs ├── quickcheck.rs └── simple.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/README.md -------------------------------------------------------------------------------- /overflower-plugin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower-plugin/Cargo.toml -------------------------------------------------------------------------------- /overflower-plugin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower-plugin/src/lib.rs -------------------------------------------------------------------------------- /overflower/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower/Cargo.toml -------------------------------------------------------------------------------- /overflower/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower/src/lib.rs -------------------------------------------------------------------------------- /overflower/tests/macro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower/tests/macro.rs -------------------------------------------------------------------------------- /overflower/tests/quickcheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower/tests/quickcheck.rs -------------------------------------------------------------------------------- /overflower/tests/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llogiq/overflower/HEAD/overflower/tests/simple.rs --------------------------------------------------------------------------------