32 lines
759 B
TOML
32 lines
759 B
TOML
[package]
|
|
name = "toes-matter"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["zeroconf"]
|
|
zeroconf = ["rs-matter/zeroconf"]
|
|
|
|
[dependencies]
|
|
async-io = "2"
|
|
embassy-futures = "0.1"
|
|
embassy-time = { version = "0.5", features = ["std"] }
|
|
embassy-time-queue-utils = { version = "0.3", features = ["generic-queue-64"] }
|
|
env_logger = "0.11"
|
|
futures-lite = "2"
|
|
log = "0.4"
|
|
rand = { version = "0.8", features = ["std", "std_rng"] }
|
|
rs-matter = { path = "../../rs-matter/rs-matter", default-features = false, features = [
|
|
"log",
|
|
"os",
|
|
"rustcrypto",
|
|
"zbus",
|
|
"max-sessions-32",
|
|
"max-groups-per-fabric-12",
|
|
"max-group-keys-per-fabric-2",
|
|
"max-group-endpoints-per-fabric-3",
|
|
] }
|