Update the documentation.

This commit is contained in:
Dimitri Sabadie 2018-09-06 15:21:37 +02:00
parent 865c855ac5
commit 820839abc0

View File

@ -77,8 +77,12 @@
//! So heres a list of currently supported features and how to enable them: //! So heres a list of currently supported features and how to enable them:
//! //!
//! - **Serialization / deserialization.** //! - **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. //! + 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** //! - **Standard library / no stdandard library**
//! + Its possible to compile against the standard library or go on your own without it. //! + Its possible to compile against the standard library or go on your own without it.
//! + Compiling with the standard library is enabled by default. //! + Compiling with the standard library is enabled by default.