[package] name = "egui-miniquad" version = "0.15.0" authors = [ "Logachev Fedor ", "Emil Ernerfeldt ", ] description = "Bindings between egui and miniquad" edition = "2021" rust-version = "1.60" license = "MIT OR Apache-2.0" readme = "README.md" homepage = "https://github.com/not-fl3/egui-miniquad" repository = "https://github.com/not-fl3/egui-miniquad" categories = ["gui", "game-development"] keywords = ["gui", "imgui", "immediate", "portable", "gamedev"] include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"] [dependencies] bytemuck = "1.9" egui = { version = "0.28", features = ["bytemuck"] } miniquad = { version = "=0.4.0" } quad-url = "0.1" [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2.7", features = ["custom"] } quad-rand = "0.2.1" # https://github.com/not-fl3/miniquad/issues/172 [target.'cfg(target_os = "macos")'.dependencies] copypasta = "0.10.0" [dev-dependencies] egui_demo_lib = { version = "0.28", default-features = false } glam = "0.28.0" [profile.release] opt-level = 2 # fast and small wasm # native: [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tracing-subscriber = "0.3"