-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (31 loc) · 1018 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
30
31
32
33
34
35
36
[package]
name = "fast_poisson"
version = "1.0.1"
authors = ["Travis Veazey <travisvz@gmail.com>"]
rust-version = "1.67"
edition = "2021"
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]
kiddo = "2.0.1"
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 = []
derive_serde = ["serde", "serde_arrays"]
[dev-dependencies]
serde_json = "1.0"
criterion = "0.4"
rayon = "1.7.0"
[[bench]]
name = "point_generation"
harness = false