[package] name = "red-sdl" version = "0.1.2" edition = "2021" resolver = "2" repository = "https://github.com/RedYou1/sdl" description = "sdl with grid layout and window management to help build apps or video game." license = "Apache-2.0" categories = ["gui", "graphics"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lints.clippy] missing-const-for-fn = "deny" unused-enumerate-index = "deny" as-underscore = "deny" str-to-string = "deny" too-many-lines = "deny" todo = "warn" get-unwrap = "warn" unwrap-used = "warn" unwrap_in_result = "warn" map_unwrap_or = "warn" [dependencies] [dependencies.sdl2] version = "=0.37.0" default-features = false features = ["ttf","image","gfx","mixer","static-link","use-vcpkg"] [package.metadata.vcpkg] dependencies = ["sdl2", "sdl2-image[libjpeg-turbo,tiff,libwebp]", "sdl2-ttf", "sdl2-gfx", "sdl2-mixer"] git = "https://github.com/microsoft/vcpkg" rev = "2024.05.24" # release 2024.05.24 # to check for a new one, check https://github.com/microsoft/vcpkg/releases [package.metadata.vcpkg.target] x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md" }