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.