2019-08-05 17:32:50 +03:00
|
|
|
[package]
|
|
|
|
name = "com"
|
2020-04-03 13:48:43 +03:00
|
|
|
version = "0.2.0"
|
2019-09-25 16:01:47 +03:00
|
|
|
authors = ["Microsoft Corp."]
|
2019-09-25 18:58:35 +03:00
|
|
|
description = """
|
|
|
|
Utilities for implementing COM Client and Servers
|
|
|
|
"""
|
2019-08-14 19:25:56 +03:00
|
|
|
edition = "2018"
|
2019-09-25 18:58:35 +03:00
|
|
|
repository = "https://github.com/microsoft/com-rs"
|
|
|
|
categories = ["os::windows-apis"]
|
|
|
|
keywords = ["windows", "ffi", "com"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "./README.md"
|
2019-08-14 19:25:56 +03:00
|
|
|
|
2019-09-07 21:01:53 +03:00
|
|
|
[dependencies]
|
2020-04-03 13:48:43 +03:00
|
|
|
com_macros = { version = "0.2", path = "macros" }
|
2019-09-26 16:18:07 +03:00
|
|
|
|
2020-07-16 20:06:28 +03:00
|
|
|
[features]
|
|
|
|
production = []
|
|
|
|
|
2020-07-07 12:40:18 +03:00
|
|
|
[[test]]
|
|
|
|
name = "tests"
|
|
|
|
path = "tests/progress.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
trybuild = "1.0.13"
|
|
|
|
|
2019-10-16 15:53:29 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
default-target = "x86_64-pc-windows-msvc"
|
2019-11-04 16:21:06 +03:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"macros",
|
|
|
|
"macros/support",
|
|
|
|
]
|