├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── edit-example.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilligon/edit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilligon/edit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilligon/edit/HEAD/README.md -------------------------------------------------------------------------------- /examples/edit-example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilligon/edit/HEAD/examples/edit-example.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilligon/edit/HEAD/src/lib.rs --------------------------------------------------------------------------------