├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── bin │ └── ex.rs └── lib.rs └── testderive ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/README.md -------------------------------------------------------------------------------- /src/bin/ex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/src/bin/ex.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/src/lib.rs -------------------------------------------------------------------------------- /testderive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/testderive/Cargo.toml -------------------------------------------------------------------------------- /testderive/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insanitybit/derive_aktor/HEAD/testderive/src/main.rs --------------------------------------------------------------------------------