[package]
edition = "2024"
name = "callcomapi_macros"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for Simplify comapi calls (see README.md)"
readme = "README.md"
license = "MIT OR Apache-2.0"
license-file = "LICENSE.md"
[lib]
name = "callcomapi_macros"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "com_thread"
path = "examples/com_thread.rs"
[[example]]
name = "with_com"
path = "examples/with_com.rs"
[[test]]
name = "com_thread"
path = "tests/com_thread.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "compile_time_assertions"
path = "tests/compile_time_assertions.rs"
[[test]]
name = "sync_async_interop"
path = "tests/sync_async_interop.rs"
[[test]]
name = "with_com"
path = "tests/with_com.rs"
[dependencies.callcomapi_runtime]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dependencies.windows]
version = "0.62"
features = [
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_System_Wmi",
"Win32_System_Rpc",
"Win32_Foundation",
]
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.windows]
version = "0.62"
features = [
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_Foundation",
"Win32_System_Wmi",
"Win32_System_Rpc",
"Win32_System_Ole",
]