├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── basics │ ├── Cargo.toml │ └── src │ ├── main.rs │ └── msgs.rs └── src ├── lib.rs ├── msgs.rs ├── node.rs ├── protocol.rs ├── recipient.rs ├── remote.rs ├── utils.rs ├── worker.rs └── world.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/README.md -------------------------------------------------------------------------------- /examples/basics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/examples/basics/Cargo.toml -------------------------------------------------------------------------------- /examples/basics/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/examples/basics/src/main.rs -------------------------------------------------------------------------------- /examples/basics/src/msgs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/examples/basics/src/msgs.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/msgs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/msgs.rs -------------------------------------------------------------------------------- /src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/node.rs -------------------------------------------------------------------------------- /src/protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/protocol.rs -------------------------------------------------------------------------------- /src/recipient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/recipient.rs -------------------------------------------------------------------------------- /src/remote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/remote.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/worker.rs -------------------------------------------------------------------------------- /src/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-remote/HEAD/src/world.rs --------------------------------------------------------------------------------