# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "libnoise" version = "1.1.2" authors = ["Contributors to the libnoise-rs Repository"] description = "A simple, performant, and customizable procedural noise generation library." homepage = "https://github.com/cookiephone/libnoise-rs" documentation = "https://docs.rs/libnoise" readme = "README.md" keywords = [ "noise", "procedural", "perlin", "simplex", "worley", ] categories = [ "algorithms", "mathematics", "game-development", "graphics", ] license = "MIT" repository = "https://github.com/cookiephone/libnoise-rs" [package.metadata.docs.rs] all-features = true [profile.bench] opt-level = 3 lto = true codegen-units = 1 strip = true [profile.dev] opt-level = 1 [profile.release] opt-level = 3 lto = true codegen-units = 1 strip = true [profile.release-with-debug] debug = 2 inherits = "release" strip = false [[example]] name = "billow" [[example]] name = "chaining" [[example]] name = "checkerboard" [[example]] name = "custom" [[example]] name = "fbm" [[example]] name = "improved_perlin" [[example]] name = "perlin" [[example]] name = "ridgedmulti" [[example]] name = "simplex" [[example]] name = "value" [[example]] name = "worley" [[test]] name = "test_sources" [[test]] name = "test_other" [[test]] name = "test_adapters" [[test]] name = "test_utils" [[bench]] name = "billow" harness = false [[bench]] name = "checkerboard" harness = false [[bench]] name = "fbm" harness = false [[bench]] name = "improved_perlin" harness = false [[bench]] name = "perlin" harness = false [[bench]] name = "ridgedmulti" harness = false [[bench]] name = "simplex" harness = false [[bench]] name = "value" harness = false [[bench]] name = "worley" harness = false [dependencies.criterion] version = "0.5.1" optional = true [dependencies.image] version = "0.24.6" features = ["gif"] optional = true [dependencies.itertools] version = "0.10.5" [dependencies.num-traits] version = "0.2.16" [dependencies.rand] version = "0.8.5" features = [] default-features = false [dependencies.rand_chacha] version = "0.3.1" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.itertools] version = "0.10.5" [dev-dependencies.plotters] version = "0.3.5" [dev-dependencies.proptest] version = "1.2.0" [dev-dependencies.tempdir] version = "0.3.7" [features] dev-tools = ["dep:criterion"] image = ["dep:image"]