rantz_random 1.2.0

Mostly just a wrapper around fastrand for a bunch of types. Supports bevy and rantz_spatial2d.
Documentation
[dependencies.bevy_color]
optional = true
version = "0.14.1"

[dependencies.bevy_math]
default-features = false
optional = true
version = "0.14.0"

[dependencies.bevy_utils]
optional = true
version = "0.14.0"

[dependencies.fastrand]
version = "2.1.0"

[features]
bevy = ["dep:bevy_math", "dep:bevy_utils", "dep:bevy_color"]
default = ["bevy"]

[lib]
name = "rantz_random"
path = "src/lib.rs"

[lints.clippy]
doc_markdown = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
ptr_as_ptr = "warn"
ptr_cast_constness = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
ref_as_ptr = "warn"
semicolon_if_nothing_returned = "warn"
type_complexity = "allow"
undocumented_unsafe_blocks = "warn"
unwrap_or_default = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
unsafe_op_in_unsafe_fn = "warn"

[package]
authors = ["Robert Gardner'"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["game-engines"]
description = "Mostly just a wrapper around fastrand for a bunch of types. Supports bevy and rantz_spatial2d."
edition = "2021"
homepage = "https://github.com/BobG1983/rantz_random"
keywords = ["gamedev", "bevy"]
license = "MIT OR Apache-2.0"
name = "rantz_random"
readme = "README.md"
repository = "https://github.com/BobG1983/rantz_random"
version = "1.2.0"

[[test]]
name = "weighted_table"
path = "tests/weighted_table.rs"