From 310db21d6460975f415c1334401048cd3d4bf044 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Mon, 5 Oct 2015 15:57:01 +0200 Subject: [PATCH] add link to the README from the docs The small starting page in the docs was noted at https://users.rust-lang.org/t/lets-talk-about-ecosystem-documentation/2791/25 --- serde/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index e6b8528f..380029c7 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -5,6 +5,9 @@ //! handshake protocol between serializers and serializees can be completely optimized away, //! leaving serde to perform roughly the same speed as a hand written serializer for a specific //! type. +//! +//! For a detailed tutorial on the different ways to use serde please check out the +//! [github repository](https://github.com/serde-rs/serde) #![doc(html_root_url="https://serde-rs.github.io/serde/serde")] #![cfg_attr(feature = "nightly", feature(collections, core, enumset, nonzero, step_trait, zero_one))]