From 820839abc031fe55f233f6abb2df3a0ccf8aee29 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Thu, 6 Sep 2018 15:21:37 +0200 Subject: [PATCH] Update the documentation. --- src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 0fcb8fe..b00501c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -77,8 +77,12 @@ //! So here’s a list of currently supported features and how to enable them: //! //! - **Serialization / deserialization.** -//! + This feature implements both the `Serialize` and `Deserialize` traits from `serde`. +//! + This feature implements both the `Serialize` and `Deserialize` traits from `serde` for all +//! types exported by this crate. //! + Enable with the `"serialization"` feature. +//! - **[cgmath](https://crates.io/crates/cgmath) implementors +//! + Adds some usefull implementations of `Interpolate` for some cgmath types. +//! + Enable with the `"impl-cgmath"` feature. //! - **Standard library / no stdandard library** //! + It’s possible to compile against the standard library or go on your own without it. //! + Compiling with the standard library is enabled by default.