[package] name = "boids" version = "0.1.0" authors = ["Evan Pratten "] edition = "2018" description = "A fast boids library for Rust" documentation = "https://docs.rs/boids" readme = "README.md" homepage = "https://github.com/ewpratten/boids-rs" repository = "https://github.com/ewpratten/boids-rs" license = "GPL-3.0" keywords = [] categories = [] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rayon = { version = "1.5", optional = true } cgmath = { version = "0.18", features = ["serde"] } rand = "0.8" serde = { version = "1.0", optional = true, features = ["derive"] } cfg-if = "1" puffin = { version = "0.7", optional = true } [dev-dependencies] raylib = "3.5" puffin = "0.7" puffin_http = "0.4"