forked from Kromey/fast_poisson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 908 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "fast_poisson"
version = "0.5.0"
authors = ["Travis Veazey <[email protected]>"]
edition = "2018"
description = "An implementation of Bridson's algorithm for fast Poisson disk sampling"
repository = "https://github.com/Kromey/fast_poisson"
license = "MIT OR Apache-2.0"
keywords = ["poisson-disk", "bridson", "distribution", "sampling"]
categories = ["algorithms"]
exclude = ["/.github/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.4"
rand_xoshiro = "0.6.0"
rand_distr = "0.4.0"
serde = { version = "1.0", package = "serde", features = ["derive"], optional = true }
serde_arrays = { version = "0.1.0", optional = true }
[features]
default = [] # Provide an "empty" default feature for CI
single_precision = []
small_rng = []
derive_serde = ["serde", "serde_arrays"]
[dev-dependencies]
serde_json = "1.0"