From 9224dcd00ee7d377c0a48190eff090a9011e1115 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Thu, 21 Jan 2016 11:10:13 -0800 Subject: [PATCH] Add 'License' and 'Contributing' sections to README. Also add .md file extension to CONTRIBUTING. --- CONTRIBUTING => CONTRIBUTING.md | 0 README.md | 11 +++++++++++ 2 files changed, 11 insertions(+) rename CONTRIBUTING => CONTRIBUTING.md (100%) diff --git a/CONTRIBUTING b/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING rename to CONTRIBUTING.md diff --git a/README.md b/README.md index 08ed60b..1384825 100644 --- a/README.md +++ b/README.md @@ -44,3 +44,14 @@ The `rpc!` macro generates a module in the current module. In the above example, - Allow omitting the return type in rpc definitions when the type is `()`. - Support arbitrary serialization (currently `bincode` is used for all serialization). - Support asynchronous server implementations (currently thread per connection). + +## Contributing + +To contribute to Tarpc, please see [CONTRIBUTING](CONTRIBUTING.md). + +## License + +Tarpc is distributed under the terms of both the MIT license +and the Apache License (Version 2.0). + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.