2022-12-27 09:32:52 +05:30
|
|
|
[package]
|
2023-07-22 10:29:18 +00:00
|
|
|
name = "tlv"
|
2022-12-27 09:32:52 +05:30
|
|
|
version = "0.1.0"
|
2023-07-21 12:06:58 +00:00
|
|
|
edition = "2021"
|
2023-07-28 06:22:13 +00:00
|
|
|
authors = ["Kedar Sovani <kedars@gmail.com>", "Ivan Markov", "Project CHIP Authors"]
|
|
|
|
description = "Native Rust implementation of the Matter (Smart-Home) ecosystem - TLV Tool"
|
|
|
|
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
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-22 10:29:18 +00:00
|
|
|
rs-matter = { path = "../../rs-matter" }
|
2022-12-27 09:32:52 +05:30
|
|
|
log = {version = "0.4.14", features = ["max_level_trace", "release_max_level_warn"]}
|
|
|
|
simple_logger = "1.16.0"
|
|
|
|
clap = "2.34"
|