[package] name = "embed-resource" description = "A Cargo library to handle compilation and inclusion of Windows resources in the most resilient fashion imaginable" documentation = "https://rawcdn.githack.com/nabijaczleweli/rust-embed-resource/doc/embed_resource/index.html" repository = "https://github.com/nabijaczleweli/rust-embed-resource" readme = "README.md" keywords = ["cargo", "build", "windows", "resource", "manifest"] categories = ["development-tools", "os::windows-apis"] license = "MIT" # Remember to also update in appveyor.yml # Remember to also update in src/lib.rs ~L40 (Cargo.toml example) # Remember to also update in README # Remember to also update in .github/workflows/msvc/test.py # Remember to also update in .github/workflows/msvc/version.rc version = "3.0.1" authors = ["наб ", "Cat Plus Plus ", "Liigo ", "azyobuzin ", "Peter Atashian ", "pravic ", "Gabriel Majeri ", "SonnyX", "Johan Andersson ", "Jordan Poles ", "MSxDOS ", "Jim McGrath ", "roblabla ", "Jasper Bekkers ", "Richard Markiewicz ", "Emerson de Freitas Barcelos ", "Li Keqing ", "Alexis Bourget ", "Michael Farrell ", "Jacob Okamoto ", "Marijn Suijten "] exclude = ["*.enc"] [dependencies] rustc_version = "0.4" toml = "0.8" [target.'cfg(not(target_os = "windows"))'.dependencies] memchr = "2.7" cc = "1.0" [target.'cfg(all(target_os = "windows", target_env = "msvc"))'.dependencies] cc = "1.0" vswhom = "0.1" [target.'cfg(all(target_os = "windows", target_env = "msvc"))'.dependencies.winreg] version = "0.52" default-features = false [workspace] members = [".github/workflows/msvc"]