├── .gitignore ├── Cargo.toml ├── README.md ├── executor ├── Cargo.toml └── src │ └── main.rs ├── messaging ├── Cargo.toml └── src │ └── lib.rs └── task ├── Cargo.toml └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/README.md -------------------------------------------------------------------------------- /executor/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/executor/Cargo.toml -------------------------------------------------------------------------------- /executor/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/executor/src/main.rs -------------------------------------------------------------------------------- /messaging/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/messaging/Cargo.toml -------------------------------------------------------------------------------- /messaging/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/messaging/src/lib.rs -------------------------------------------------------------------------------- /task/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/task/Cargo.toml -------------------------------------------------------------------------------- /task/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/coreplay-poc/HEAD/task/src/lib.rs --------------------------------------------------------------------------------