├── .gitignore ├── Cargo.toml ├── LICENSE.APACHE ├── LICENSE.MIT ├── README.md ├── derive ├── Cargo.toml └── src │ └── lib.rs ├── src ├── lib.rs ├── lower.rs └── tests.rs └── tests ├── config.rs ├── fail ├── map_outlives_closure.rs ├── map_outlives_closure.stderr ├── new_dep_outlives_closure.rs ├── new_dep_outlives_closure.stderr ├── new_dep_outlives_obj.rs └── new_dep_outlives_obj.stderr ├── game.md └── game.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/LICENSE.APACHE -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/README.md -------------------------------------------------------------------------------- /derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/derive/Cargo.toml -------------------------------------------------------------------------------- /derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/derive/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/lower.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/src/lower.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/src/tests.rs -------------------------------------------------------------------------------- /tests/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/config.rs -------------------------------------------------------------------------------- /tests/fail/map_outlives_closure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/fail/map_outlives_closure.rs -------------------------------------------------------------------------------- /tests/fail/map_outlives_closure.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/fail/map_outlives_closure.stderr -------------------------------------------------------------------------------- /tests/fail/new_dep_outlives_closure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/fail/new_dep_outlives_closure.rs -------------------------------------------------------------------------------- /tests/fail/new_dep_outlives_closure.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/fail/new_dep_outlives_closure.stderr -------------------------------------------------------------------------------- /tests/fail/new_dep_outlives_obj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/fail/new_dep_outlives_obj.rs -------------------------------------------------------------------------------- /tests/fail/new_dep_outlives_obj.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/fail/new_dep_outlives_obj.stderr -------------------------------------------------------------------------------- /tests/game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/game.md -------------------------------------------------------------------------------- /tests/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzamkov/fortify/HEAD/tests/game.rs --------------------------------------------------------------------------------