-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
40 lines (34 loc) · 1.12 KB
/
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
37
38
39
40
[package]
name = "bevy_turborand"
version = "0.9.0"
edition = "2021"
authors = ["Gonçalo Rica Pais da Silva <[email protected]>"]
description = "A plugin to enable ECS optimised random number generation for the Bevy game engine."
repository = "https://github.com/Bluefinger/bevy_turborand"
license = "Apache-2.0 OR MIT"
keywords = ["bevy", "gamedev", "random", "wyrand", "chacha"]
categories = ["game-development", "game-engines"]
exclude = ["/.*"]
resolver = "2"
[features]
default = ["wyrand", "serialize"]
wyrand = ["turborand/wyrand"]
chacha = ["turborand/chacha"]
serialize = ["turborand/serialize", "dep:serde"]
rand = ["turborand/rand"]
[dependencies]
bevy = { version = "0.14", default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
turborand = { version = "0.10", default-features = false, features = [
"std",
"fmt",
] }
[target.'cfg(target_arch = "wasm32")'.dependencies.instant]
version = "0.1"
features = ["wasm-bindgen"]
[dev-dependencies]
ron = "0.8"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
[package.metadata.docs.rs]
all-features = true