[package] name = "magma_api" version = "0.1.0-alpha.1" edition = "2021" license = "MIT" description = "API of the Magma3D game engine" homepage = "https://dynamicgoose.github.io/magma3d-engine/" repository = "https://github.com/DynamicGoose/magma-api" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] magma_app = { path = "crates/magma_app", version = "0.1.0-alpha.5" } magma_audio = { path = "crates/magma_audio", optional = true, version = "0.1.0-alpha.2" } magma_winit = { path = "crates/magma_winit", optional = true, version = "0.1.0-alpha.5" } magma_ui = { path = "crates/magma_ui", optional = true, version = "0.1.0-alpha.2" } [workspace] members = ["crates/*"] [features] default = ["audio", "winit", "ui"] audio = ["dep:magma_audio"] winit = ["dep:magma_winit"] ui = ["dep:magma_ui"]