# 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" rust-version = "1.67" name = "fast_poisson" version = "1.0.1" authors = ["Travis Veazey "] exclude = ["/.github/*"] description = "An implementation of Bridson's algorithm for fast Poisson disk sampling" readme = "README.md" keywords = [ "poisson-disk", "bridson", "distribution", "sampling", ] categories = ["algorithms"] license = "MIT OR Apache-2.0" repository = "https://github.com/Kromey/fast_poisson" [[bench]] name = "point_generation" harness = false [dependencies.kiddo] version = "2.0.1" [dependencies.rand] version = "0.8.4" [dependencies.rand_distr] version = "0.4.0" [dependencies.rand_xoshiro] version = "0.6.0" [dependencies.serde] version = "1.0" features = ["derive"] optional = true package = "serde" [dependencies.serde_arrays] version = "0.1.0" optional = true [dev-dependencies.criterion] version = "0.4" [dev-dependencies.rayon] version = "1.7.0" [dev-dependencies.serde_json] version = "1.0" [features] default = [] derive_serde = [ "serde", "serde_arrays", ] single_precision = []