[package]
edition = "2024"
name = "rlevo-environments"
version = "0.2.0"
authors = ["Anthony Torlucci"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RL benchmark environments and landscapes for rlevo (internal crate — use `rlevo` for the full API)"
readme = "README.md"
keywords = [
"evolutionary",
"deep-learning",
"burn",
"neural-network",
]
categories = [
"science",
"algorithms",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/anthonytorlucci/rlevo"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--html-in-header",
"../../katex-header.html",
]
[features]
bench = ["dep:rlevo-benchmarks"]
box2d = ["dep:rapier2d"]
default = [
"box2d",
"locomotion",
]
locomotion = ["dep:rapier3d"]
record = [
"bench",
"rlevo-benchmarks/record",
]
[lib]
name = "rlevo_environments"
path = "src/lib.rs"
[[test]]
name = "grids_solvable"
path = "tests/grids_solvable.rs"
[[test]]
name = "render_coverage"
path = "tests/render_coverage.rs"
[dependencies.burn]
version = "0.21.0"
features = [
"wgpu",
"train",
"tui",
"metrics",
"flex",
]
[dependencies.rand]
version = "0.10.1"
[dependencies.rand_distr]
version = "0.6.0"
[dependencies.rapier2d]
version = "0.32"
features = ["enhanced-determinism"]
optional = true
[dependencies.rapier3d]
version = "0.32"
features = ["enhanced-determinism"]
optional = true
[dependencies.rlevo-benchmarks]
version = "0.2.0"
optional = true
[dependencies.rlevo-core]
version = "0.2.0"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dev-dependencies.approx]
version = "0.5"