merged with current master
This commit is contained in:
		@@ -1,4 +1,11 @@
 | 
				
			|||||||
# 0.2.1
 | 
					## 0.2.2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					> Sun 30th September 2018
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  - Bump version numbers (`splines-0.2`) in examples.
 | 
				
			||||||
 | 
					  - Fix several typos in the documentation.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## 0.2.1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
> Thu 20th September 2018
 | 
					> Thu 20th September 2018
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
[package]
 | 
					[package]
 | 
				
			||||||
name = "splines"
 | 
					name = "splines"
 | 
				
			||||||
version = "0.2.1"
 | 
					version = "0.2.2"
 | 
				
			||||||
license = "BSD-3-Clause"
 | 
					license = "BSD-3-Clause"
 | 
				
			||||||
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
 | 
					authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
 | 
				
			||||||
description = "Spline interpolation made easy"
 | 
					description = "Spline interpolation made easy"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,8 +15,8 @@ This crate has features! Here’s a comprehensive list of what you can enable:
 | 
				
			|||||||
  - **[cgmath](https://crates.io/crates/cgmath) implementors**
 | 
					  - **[cgmath](https://crates.io/crates/cgmath) implementors**
 | 
				
			||||||
    + Adds some usefull implementations of `Interpolate` for some cgmath types.
 | 
					    + Adds some usefull implementations of `Interpolate` for some cgmath types.
 | 
				
			||||||
    + Enable with the `"impl-cgmath"` feature.
 | 
					    + Enable with the `"impl-cgmath"` feature.
 | 
				
			||||||
  - **Standard library / no stdandard library.**
 | 
					  - **Standard library / no standard library.**
 | 
				
			||||||
    + It’s possible to compile against the standard library or go on your own without it.
 | 
					    + 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.
 | 
					    + Compiling with the standard library is enabled by default.
 | 
				
			||||||
    + Use `defaut-features = []` in your `Cargo.toml` to disable.
 | 
					    + Use `default-features = []` in your `Cargo.toml` to disable.
 | 
				
			||||||
    + Enable explicitly with the `"std"` feataure.
 | 
					    + Enable explicitly with the `"std"` feature.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
[package]
 | 
					[package]
 | 
				
			||||||
name = "hello-world"
 | 
					name = "hello-world"
 | 
				
			||||||
version = "0.1.0"
 | 
					version = "0.2.0"
 | 
				
			||||||
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
 | 
					authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[dependencies]
 | 
					[dependencies]
 | 
				
			||||||
splines = "0.1"
 | 
					splines = "0.2"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
[package]
 | 
					[package]
 | 
				
			||||||
name = "serialization"
 | 
					name = "serialization"
 | 
				
			||||||
version = "0.1.0"
 | 
					version = "0.2.0"
 | 
				
			||||||
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
 | 
					authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[dependencies]
 | 
					[dependencies]
 | 
				
			||||||
serde_json = "1"
 | 
					serde_json = "1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[dependencies.splines]
 | 
					[dependencies.splines]
 | 
				
			||||||
version = "0.1"
 | 
					version = "0.2"
 | 
				
			||||||
features = ["serialization"]
 | 
					features = ["serialization"]
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -90,7 +90,7 @@
 | 
				
			|||||||
//!     + It’s possible to compile against the standard library or go on your own without it.
 | 
					//!     + 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.
 | 
					//!     + Compiling with the standard library is enabled by default.
 | 
				
			||||||
//!     + Use `default-features = []` in your `Cargo.toml` to disable.
 | 
					//!     + Use `default-features = []` in your `Cargo.toml` to disable.
 | 
				
			||||||
//!     + Enable explicitly with the `"std"` feataure.
 | 
					//!     + Enable explicitly with the `"std"` feature.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#![cfg_attr(not(feature = "std"), no_std)]
 | 
					#![cfg_attr(not(feature = "std"), no_std)]
 | 
				
			||||||
#![cfg_attr(not(feature = "std"), feature(alloc))]
 | 
					#![cfg_attr(not(feature = "std"), feature(alloc))]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user