27 lines
629 B
TOML
27 lines
629 B
TOML
|
[package]
|
||
|
name = "abletk-direct2d"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
raw-window-handle = "0.4.3"
|
||
|
|
||
|
[dependencies.windows]
|
||
|
version = "0.35.0"
|
||
|
features = [
|
||
|
"Foundation_Numerics",
|
||
|
"Win32_System_Com",
|
||
|
"Win32_Foundation",
|
||
|
"Win32_Graphics_Direct2D_Common",
|
||
|
"Win32_Graphics_Direct2D",
|
||
|
"Win32_Graphics_DirectWrite",
|
||
|
"Win32_Graphics_Dxgi_Common",
|
||
|
"Win32_Graphics_Gdi",
|
||
|
"Win32_System_LibraryLoader",
|
||
|
"Win32_System_SystemInformation",
|
||
|
"Win32_UI_WindowsAndMessaging",
|
||
|
"alloc",
|
||
|
]
|