jengine 0.4.6

Personal roguelike game engine.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "jengine"
version = "0.4.6"
authors = ["Tadeas Tran <tran.tadeas@protonmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Personal roguelike game engine."
readme = "README.md"
keywords = ["gamedev"]
categories = ["game-engines"]
license = "GPL-3.0"
repository = "https://github.com/honyoP/jengine"

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

[[bin]]
name = "jengine"
path = "src/main.rs"

[[example]]
name = "camera"
path = "examples/camera.rs"

[[example]]
name = "ecs"
path = "examples/ecs.rs"

[[example]]
name = "layout_demo"
path = "examples/layout_demo.rs"

[[example]]
name = "modern_ui"
path = "examples/modern_ui.rs"

[[example]]
name = "particles"
path = "examples/particles.rs"

[[example]]
name = "pathfinding"
path = "examples/pathfinding.rs"

[[example]]
name = "perf_bench"
path = "examples/perf_bench.rs"

[[example]]
name = "scenes"
path = "examples/scenes.rs"

[[example]]
name = "stress_test"
path = "examples/stress_test.rs"

[[example]]
name = "ui_styling"
path = "examples/ui_styling.rs"

[[example]]
name = "ui_widgets"
path = "examples/ui_widgets.rs"

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

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

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

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

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

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

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

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

[dependencies.bytemuck]
version = "1"
features = ["derive"]

[dependencies.glam]
version = "0.29"

[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false

[dependencies.kira]
version = "0.9"
features = [
    "ogg",
    "wav",
]

[dependencies.pollster]
version = "0.3"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.walkdir]
version = "2"

[dependencies.wgpu]
version = "28"

[dependencies.winit]
version = "0.30"

[build-dependencies.image]
version = "0.25"
features = ["png"]
default-features = false