2022-12-27 09:32:52 +05:30
|
|
|
[package]
|
2023-07-22 10:29:18 +00:00
|
|
|
name = "rs-matter-macros"
|
2022-12-27 09:32:52 +05:30
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-07-28 06:22:13 +00:00
|
|
|
authors = ["Kedar Sovani <kedars@gmail.com>", "Ivan Markov", "Project CHIP Authors"]
|
2023-07-22 14:03:00 +00:00
|
|
|
description = "Native Rust implementation of the Matter (Smart-Home) ecosystem - Proc-macros"
|
|
|
|
repository = "https://github.com/project-chip/matter-rs"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["matter", "smart", "smart-home", "IoT", "ESP32"]
|
|
|
|
categories = ["embedded", "network-programming"]
|
2023-07-21 12:06:58 +00:00
|
|
|
license = "Apache-2.0"
|
2022-12-27 09:32:52 +05:30
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-02 12:22:43 +02:00
|
|
|
syn = { version = "1", features = ["extra-traits"]}
|
|
|
|
quote = "1"
|
|
|
|
proc-macro2 = "1"
|
2023-04-29 19:38:01 +03:00
|
|
|
proc-macro-crate = "1.3"
|