From 92f540f4d0e7793e0ea42bda5b9893f9fc6e54c6 Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievsky Date: Sun, 12 Jul 2015 17:13:04 +0300 Subject: [PATCH] Add link to serde project repo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f783694..ad03875f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Overview -`ipc-channel` is an implementation of the Rust channel API (a form of communicating sequential processes, CSP) over the native OS abstractions. Under the hood, this API uses Mach ports on the Mac and file descriptor passing over Unix sockets on Linux. The `serde` library is used to serialize values for transport over the wire. +`ipc-channel` is an implementation of the Rust channel API (a form of communicating sequential processes, CSP) over the native OS abstractions. Under the hood, this API uses Mach ports on the Mac and file descriptor passing over Unix sockets on Linux. The [`serde`](https://github.com/serde-rs/serde) library is used to serialize values for transport over the wire. As much as possible, `ipc-channel` has been designed to be a drop-in replacement for Rust channels. The mapping from the Rust channel APIs to `ipc-channel` APIs is as follows: