From 87e27e732d9e1489af347f7aa5c4ba3706d242c2 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Sun, 11 Jul 2021 16:22:42 +0200 Subject: [PATCH] Synchronize README. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c07f17b..f846594 100644 --- a/README.md +++ b/README.md @@ -83,19 +83,19 @@ not. It’s especially important to see how it copes with the documentation. So here’s a list of currently supported features and how to enable them: - - **Serialization / deserialization.** + - **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 `"serde"` feature. - **[cgmath](https://crates.io/crates/cgmath) implementors.** - Adds some useful implementations of `Interpolate` for some cgmath types. - - Enable with the `"impl-cgmath"` feature. + - Enable with the `"cgmath"` feature. - **[glam](https://crates.io/crates/glam) implementors.** - Adds some useful implementations of `Interpolate` for some glam types. - - Enable with the `"impl-glam"` feature. + - Enable with the `"glam"` feature. - **[nalgebra](https://crates.io/crates/nalgebra) implementors.** - Adds some useful implementations of `Interpolate` for some nalgebra types. - - Enable with the `"impl-nalgebra"` feature. + - Enable with the `"nalgebra"` feature. - **Standard library / no standard 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.