[package]
edition = "2024"
name = "codecraft"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimalist 3D game engine built on parts of Bevy (ECS, color) with wgpu and winit: OpenPBR materials, clustered lighting, an immediate-mode UI, audio and gamepad haptics"
readme = "README.md"
keywords = [
"gamedev",
"3d",
"wgpu",
"ecs",
"engine",
]
categories = [
"game-engines",
"rendering",
"graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/netrondev/codecraft"
[lib]
name = "codecraft"
path = "src/lib.rs"
[[bin]]
name = "codecraft"
path = "src/main.rs"
[[example]]
name = "cube"
path = "examples/cube.rs"
[[example]]
name = "menu"
path = "examples/menu.rs"
[[test]]
name = "mesh_loading"
path = "tests/mesh_loading.rs"
[[test]]
name = "orbit_rig"
path = "tests/orbit_rig.rs"
[[test]]
name = "picking"
path = "tests/picking.rs"
[[test]]
name = "progress_bar"
path = "tests/progress_bar.rs"
[[test]]
name = "scene_teardown"
path = "tests/scene_teardown.rs"
[[test]]
name = "shadow_fit"
path = "tests/shadow_fit.rs"
[dependencies.ab_glyph]
version = "0.2.32"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.bevy_color]
version = "0.19.1"
[dependencies.bevy_ecs]
version = "0.19.1"
[dependencies.bytemuck]
version = "1.25.2"
features = ["derive"]
[dependencies.env_logger]
version = "0.11.11"
[dependencies.glam]
version = "0.33.5"
[dependencies.gltf]
version = "1.4.1"
features = [
"names",
"utils",
]
default-features = false
[dependencies.hidapi]
version = "2.6.6"
[dependencies.log]
version = "0.4.34"
[dependencies.png]
version = "0.18"
[dependencies.pollster]
version = "1.0.1"
[dependencies.resvg]
version = "0.45"
default-features = false
[dependencies.rodio]
version = "0.22.2"
features = [
"playback",
"vorbis",
]
default-features = false
[dependencies.wgpu]
version = "30.0.1"
[dependencies.winit]
version = "0.30.13"
[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
"Win32_Devices_DeviceAndDriverInstallation",
"Win32_Devices_FunctionDiscovery",
"Win32_Devices_Properties",
"Win32_Foundation",
"Win32_Media_Audio",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_System_Variant",
"Win32_UI_Shell_PropertiesSystem",
]