First implementation
In this part, we'll implement an incomplete MessagePack-RPC library using the whole tokio stack:
tokio-iofor the codec (see chapter 2.1)tokio-protofor the protocol (see chapter 2.2)tokio-servicefor the service (see chapter 2.3)
Why an "incomplete" library? We'll see that using only tokio-proto, we cannot
implement support for notifications. But worry not! This is something we'll fix
in part 3.