[package] name = "rsgt" description = "Rust simple GUI Toolkit" authors = ["Overtime Coder"] license = "MIT" repository = "https://github.com/OvertimeCoder/RSGT" version = "0.3.5" edition = "2021" exclude = ["src/icon.png","img/show_window.png"] categories = ["gui"] keywords = ["rsgt","gui"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rsgt_wgpu = {path = "./wgpu",version = "0.1.0"} rsgt_core = {path = "./core", version = "0.1.0"} image = "0.24.5" winit = "0.27.5" wgpu = "0.14.2" raw-window-handle = "0.5.0" pollster = "0.2.5" [dev-dependencies] msgbox = "0.7.0" [target."cfg(windows)".dependencies.windows-sys] version = "0.42.0" features = [ "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", ] [target."cfg(windows)".dependencies.winapi] version = "0.3" features = ["winuser", "commdlg", "winbase", "libloaderapi", "sysinfoapi", "shellapi", "combaseapi", "objbase", "shobjidl", "winerror", "commctrl"] [profile.release] panic = 'abort' codegen-units = 1 [workspace] members = [ "wgpu", "core" ]