Skip to content

Commit

Permalink
Updated dependencies and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnscode committed Apr 3, 2018
1 parent 3debd8e commit 90a038d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ The format is based on [Keep a Changelog][kc], and this project adheres to

## [Unreleased]

This version introduces a lots of break changes and significant performance improvement by integrating with [rayon](https://github.com/rayon-rs/rayon). And the error handle mechanism has been refined with [failure](https://github.com/rust-lang-nursery/failure).
## [0.4.0] - 2018-04-03

* This version introduces a lots of break changes and significant performance improvement by integrating with [rayon](https://github.com/rayon-rs/rayon).

* The error handle mechanism has been refined with [failure](https://github.com/rust-lang-nursery/failure).

## [0.3.0] - 2018-02-28

Expand Down Expand Up @@ -64,4 +68,5 @@ This version introduces a lots of break changes and significant performance impr
[0.2.0]: https://github.com/shawnscode/crayon/compare/v0.1.0...v0.2.0
[0.2.1]: https://github.com/shawnscode/crayon/compare/v0.1.0...v0.2.1
[0.3.0]: https://github.com/shawnscode/crayon/compare/v0.2.1...v0.3.0
[Unreleased]: https://github.com/shawnscode/crayon/compare/v0.3.0...HEAD
[0.4.0]: https://github.com/shawnscode/crayon/compare/v0.3.0...v0.4.0
[Unreleased]: https://github.com/shawnscode/crayon/compare/v0.4.0...HEAD
9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ codecov = { repository = "shawnscode/crayon", branch = "master", service = "gith
members = [ "crayon-examples", "modules/imgui", "modules/3d" ]

[dependencies]
libc = "0.2.36"
gl = "0.9.0"
glutin = "0.12.0"
cgmath = "0.16.0"
gl = "0.10.0"
glutin = "0.13.1"
cgmath = "0.16.1"
failure = "0.1.1"
rayon = "1.0.1"
zip = "0.3.0"
zip = "0.3.1"

[dev-dependencies]
rand = "0.4.2"
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ extern crate cgmath;
extern crate failure;
extern crate gl;
extern crate glutin;
extern crate libc;
extern crate zip;
pub extern crate rayon;

Expand Down

0 comments on commit 90a038d

Please sign in to comment.