[package]
edition = "2018"
name = "windows-dll"
version = "0.4.1"
authors = ["Kai <thiskaiguy@gmail.com>"]
description = "Macro for dynamically loading windows dll functions"
homepage = "https://github.com/thisKai/rust-windows-dll"
documentation = "https://docs.rs/windows-dll"
readme = "README.md"
keywords = [
"windows",
"win32",
"dll",
"macro",
"ffi",
]
categories = [
"development-tools::ffi",
"external-ffi-bindings",
"api-bindings",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/thisKai/rust-windows-dll"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
"aarch64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
]
[dependencies.once_cell]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.winapi]
version = "0.3"
features = [
"ntdef",
"minwindef",
"winerror",
"libloaderapi",
"winuser",
]
optional = true
[dependencies.windows]
version = ">= 0.33, <= 0.35"
features = [
"Win32_Foundation",
"Win32_System_LibraryLoader",
]
optional = true
[dependencies.windows-dll-codegen]
version = "0.4.0"
[dev-dependencies.minifb]
version = "0.22"
[features]
default = ["winapi"]