[package]
edition = "2021"
rust-version = "1.77"
name = "roxlap-cavegen"
version = "0.1.1"
authors = ["Anton Gushcha <ncrashed@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural cave generation for the roxlap voxel engine — Worley + Perlin classify into voxlap slab format."
documentation = "https://docs.rs/roxlap-cavegen"
readme = "README.md"
keywords = [
"voxlap",
"voxel",
"procedural",
"cave",
"worley",
]
categories = [
"game-development",
"graphics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/NCrashed/roxlap"
[lib]
name = "roxlap_cavegen"
path = "src/lib.rs"
[dependencies.roxlap-formats]
version = "0.1"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"