From e54a9df152c6d26881b873ff0d45121bc4bcf983 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 16 Jan 2016 01:22:22 -0800 Subject: [PATCH] Add checkboxes to planned improvements --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8277e77..6f1db32 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ The `rpc!` macro generates a module in the current module. In the above example, ## Planned Improvements (actively being worked on) -- Automatically reconnect on the client side when the connection cuts out. -- Allow omitting the return type in rpc definitions when the type is `()`. -- Allow users to specify imports inside the `rpc!` macro -- Support arbitrary serialization. (currently `serde_json` is used for all serialization) -- Support asynchronous server implementations (currently thread per connection). -- Support doc comments on rpc method definitions +- [ ] Automatically reconnect on the client side when the connection cuts out. +- [ ] Allow omitting the return type in rpc definitions when the type is `()`. +- [x] Allow users to specify imports inside the `rpc!` macro +- [ ] Support arbitrary serialization (currently `bincode` is used for all serialization). +- [ ] Support asynchronous server implementations (currently thread per connection). +- [x] Support doc comments on rpc method definitions