[package]
edition = "2024"
name = "callcomapi_macros"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for Simplify comapi calls"
documentation = "https://docs.rs/callcomapi_macros"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fangfuzha/callcomapi"
[lib]
name = "callcomapi_macros"
path = "src/lib.rs"
proc-macro = true
[[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 = "frequent_calls"
path = "tests/frequent_calls.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.3"
[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",
]