├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── moved_value.rs └── src ├── main.rs ├── marvin.rs └── msg.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/README.md -------------------------------------------------------------------------------- /examples/moved_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/examples/moved_value.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/marvin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/src/marvin.rs -------------------------------------------------------------------------------- /src/msg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemo157/cargo-marvin/HEAD/src/msg.rs --------------------------------------------------------------------------------