From 66cd136c6a0b9dbd6f32d117c66cc3bb6a41eb0f Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Thu, 18 Feb 2016 21:27:22 -0800 Subject: [PATCH] Add a note about serde in the readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e1b87c3..f1b5190 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ items expanded by a `service!` invocation. ## Additional Features - Concurrent requests from a single client. +- Any type that `impl`s `serde`'s Serialize` and `Deserialize` can be used in the rpc signatures. - Attributes can be specified on rpc methods. These will be included on both the `Service` trait methods as well as on the `Client`'s stub methods. - Just like regular fns, the return type can be left off when it's `-> ()`.