Add more metadata to support crate's Cargo.toml file

This commit is contained in:
Ryan Levick 2019-10-01 18:18:25 +02:00
Родитель d7f03a169b
Коммит f136f7521a
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -3,6 +3,12 @@ name = "com_macros"
version = "0.1.0"
authors = ["Microsoft Corp."]
edition = "2018"
description = """
COM crate macros
"""
license = "MIT"
keywords = ["windows", "ffi", "com", "macros"]
repository = "https://github.com/microsoft/com-rs"
autotests = false
[lib]

Просмотреть файл

@ -3,6 +3,12 @@ name = "com_macros_support"
version = "0.1.0"
authors = ["Microsoft Corp."]
edition = "2018"
description = """
Support library for COM crate macros
"""
license = "MIT"
keywords = ["windows", "ffi", "com", "macros"]
repository = "https://github.com/microsoft/com-rs"
[dependencies]
syn = { version = "1.0.5", features = ["full"] }