[package]
edition = "2021"
name = "rusting_engine"
version = "0.1.46"
authors = ["Vasyl Trefilov <drenfor228@gmail.com>"]
build = false
exclude = [
"testModels/*",
"AGENTS.md",
"plan.md",
"benchmark/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance Vulkano-based 3D engine with GPU physics."
readme = "README.md"
keywords = [
"vulkan",
"engine",
"graphics",
"physics",
"gamedev",
]
categories = [
"rendering",
"game-engines",
]
license-file = "LICENSE.md"
repository = "https://github.com/Vasyl-Trefilov/RustingEngine"
[features]
default = ["editor"]
editor = [
"window",
"dep:egui",
"dep:egui-winit",
"dep:egui_winit_vulkano",
"dep:vulkano-util",
]
experimental-gpu-physics = []
validation = []
window = ["dep:vulkano-util"]
[lib]
name = "rusting_engine"
path = "src/lib.rs"
[[bin]]
name = "cook_scene"
path = "src/bin/cook_scene.rs"
[[bin]]
name = "editor"
path = "src/bin/editor.rs"
required-features = ["editor"]
[[bin]]
name = "game"
path = "src/bin/game.rs"
required-features = ["window"]
[[bin]]
name = "user_main"
path = "src/user_main.rs"
[[example]]
name = "gltf_test"
path = "src/examples/gltf_test.rs"
[[example]]
name = "native_texture"
path = "src/examples/native_texture.rs"
[dependencies.bevy_ecs]
version = "0.19.1"
features = ["multi_threaded"]
[dependencies.bincode]
version = "1.3.3"
[dependencies.bytemuck]
version = "1.25.0"
[dependencies.cgmath]
version = "0.18.0"
[dependencies.egui]
version = "0.31.1"
optional = true
[dependencies.egui-winit]
version = "0.31.1"
features = [
"wayland",
"x11",
]
optional = true
default-features = false
[dependencies.egui_winit_vulkano]
version = "0.28.0"
features = [
"wayland",
"x11",
]
optional = true
default-features = false
[dependencies.gltf]
version = "1.4.1"
[dependencies.image]
version = "0.25.10"
[dependencies.nalgebra]
version = "0.34.2"
[dependencies.rand]
version = "0.10.0"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.smallvec]
version = "1.15.1"
[dependencies.uuid]
version = "1.25.0"
features = [
"serde",
"v4",
]
[dependencies.vulkano]
version = "0.35.2"
[dependencies.vulkano-shaders]
version = "0.35.0"
[dependencies.vulkano-util]
version = "0.35.0"
optional = true
[dependencies.winit]
version = "0.30.12"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"