com-rs/Cargo.toml

36 строки
640 B
TOML
Исходник Обычный вид История

2019-08-05 17:32:50 +03:00
[package]
name = "com"
2020-04-03 13:48:43 +03:00
version = "0.2.0"
authors = ["Microsoft Corp."]
description = """
Utilities for implementing COM Client and Servers
"""
edition = "2018"
repository = "https://github.com/microsoft/com-rs"
categories = ["os::windows-apis"]
keywords = ["windows", "ffi", "com"]
license = "MIT"
readme = "./README.md"
[dependencies]
2020-04-03 13:48:43 +03:00
com_macros = { version = "0.2", path = "macros" }
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"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[workspace]
members = [
"macros",
"macros/support",
]