├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── rustfmt.toml └── src ├── ghost_borrow.rs ├── ghost_borrow_mut.rs ├── ghost_cell.rs ├── ghost_cursor.rs └── lib.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 120 2 | -------------------------------------------------------------------------------- /src/ghost_borrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/src/ghost_borrow.rs -------------------------------------------------------------------------------- /src/ghost_borrow_mut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/src/ghost_borrow_mut.rs -------------------------------------------------------------------------------- /src/ghost_cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/src/ghost_cell.rs -------------------------------------------------------------------------------- /src/ghost_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/src/ghost_cursor.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthieu-m/ghost-cell/HEAD/src/lib.rs --------------------------------------------------------------------------------