maple 0.3.0

A 3D 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 = "maple"
version = "0.3.0"
authors = ["ToothlessBrush <johnklein514@gmail.com"]
build = false
exclude = ["res/models/**/*"]
include = [
    "res/primitives/**/*",
    "res/shaders/**/*",
    "**/*.rs",
    "cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A 3D game engine"
readme = "README.md"
keywords = [
    "3d",
    "game",
    "engine",
    "gamedev",
    "graphics",
]
categories = [
    "game-engines",
    "graphics",
]
license = "MIT"
repository = "https://github.com/ToothlessBrush/maple"

[features]
3d = ["dep:maple_3d"]
default = [
    "3d",
    "physics",
]
physics = ["dep:maple_physics"]

[lib]
name = "maple"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[example]]
name = "bloom"
path = "examples/bloom/main.rs"

[[example]]
name = "mandelbrot"
path = "examples/mandelbrot/main.rs"

[[example]]
name = "model_loading"
path = "examples/model_loading/main.rs"

[[example]]
name = "physics_demo"
path = "examples/physics_demo/main.rs"

[[example]]
name = "player_controller"
path = "examples/player_controller/main.rs"

[[example]]
name = "tutorial"
path = "examples/tutorial/main.rs"

[dependencies.anyhow]
version = "1.0.99"

[dependencies.bytemuck]
version = "1.23.2"

[dependencies.glam]
version = "0.30.5"
features = ["glam-assert"]

[dependencies.log]
version = "0.4"

[dependencies.maple_3d]
version = "0.3.0"
optional = true

[dependencies.maple_app]
version = "0.3.0"

[dependencies.maple_derive]
version = "0.3.0"

[dependencies.maple_engine]
version = "0.3.0"

[dependencies.maple_physics]
version = "0.3.0"
optional = true

[dependencies.maple_renderer]
version = "0.3.0"

[dev-dependencies.env_logger]
version = "0.11"