com-rs/Cargo.toml

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

2019-08-05 17:32:50 +03:00
[package]
name = "com"
2021-10-25 19:16:04 +03:00
version = "0.6.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]
2021-10-25 19:16:04 +03:00
com_macros = { version = "0.6", path = "macros" }
2020-07-16 20:06:28 +03:00
[features]
default = ["std"]
# Production requires std because production::registration uses CString.
production = ["std"]
std = []
2020-07-16 20:06:28 +03:00
2020-07-07 12:40:18 +03:00
[[test]]
name = "tests"
path = "tests/progress.rs"
[dev-dependencies]
2020-08-04 17:56:53 +03:00
trybuild = "1.0"
2020-07-07 12:40:18 +03:00
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
all-features = true
[workspace]
members = [
"macros",
"macros/support",
2020-08-04 17:56:53 +03:00
"examples/basic",
"examples/basic/server",
"examples/basic/client",
"examples/basic/interface",
"examples/d2d-clock",
2021-10-20 05:06:10 +03:00
"examples/no_std_com",
]
[[example]]
name = "webview2"
2021-10-14 02:29:12 +03:00
required-features = ["production"]