Skip to content

Commit

Permalink
Merge commit 'e947c428cb99794367d347f373e16075365e86b7' into feature/…
Browse files Browse the repository at this point in the history
…rayon
  • Loading branch information
barneydmedia committed Sep 19, 2019
2 parents 7268c23 + e947c42 commit 06b114f
Show file tree
Hide file tree
Showing 91 changed files with 996 additions and 794 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/doc/
/target/
/.idea/
/.criterion/
*.iml
Cargo.lock
*.png
Expand Down
22 changes: 21 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,28 @@ rayon = "1.2.0"
[features]
default = ["image"]

[dev-dependencies]
criterion = "0.1.2"

[[bench]]
name = "open_simplex"
harness = false

[[bench]]
name = "perlin"
harness = false

[[bench]]
name = "benches"
name = "super_simplex"
harness = false

[[bench]]
name = "value"
harness = false

[[bench]]
name = "worley"
harness = false

[[example]]
name = "perlin"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A procedural noise generation library for Rust.
[Documentation](https://docs.rs/noise/)

```rust
use noise::noise_fns::Fbm;
use noise::{Fbm, NoiseFn};

let fbm = Fbm::new();

Expand Down
321 changes: 0 additions & 321 deletions benches/benches.rs

This file was deleted.

Loading

0 comments on commit 06b114f

Please sign in to comment.