Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ readme = "README.md"
rust-version = "1.77"

[patch.crates-io]
rs-matter = { git = "https://github.com/project-chip/rs-matter" }
#rs-matter = { git = "https://github.com/sysgrok/rs-matter", branch = "next" }
#rs-matter = { git = "https://github.com/project-chip/rs-matter" }
rs-matter = { git = "https://github.com/sysgrok/rs-matter", branch = "next" }
#rs-matter = { path = "../rs-matter/rs-matter" }
#edge-nal = { git = "https://github.com/sysgrok/edge-net" }
#edge-nal-std = { git = "https://github.com/sysgrok/edge-net" }
Expand Down Expand Up @@ -171,7 +171,7 @@ bitflags = { version = "2.5", default-features = false }
scopeguard = { version = "1", default-features = false }
embassy-futures = "0.1"
embassy-sync = "0.7"
embassy-time = "0.4"
embassy-time = "0.5"
embedded-svc = { version = "0.28", default-features = false }
rs-matter = { version = "0.1", default-features = false }
edge-nal = "0.5"
Expand All @@ -189,7 +189,7 @@ static_cell = "2.1"
futures-lite = "1"
async-compat = "0.2"
env_logger = "0.11"
embassy-time-queue-utils = { version = "0.1", features = ["generic-queue-64"] }
embassy-time-queue-utils = { version = "0.3", features = ["generic-queue-64"] }

[[example]]
name = "light_eth"
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ fn main() -> Result<(), Error> {
);

// Run the Matter stack with our handler
// Using `pin!` is completely optional, but saves some memory due to `rustc`
// not being very intelligent w.r.t. stack usage in async functions
// Using `pin!` is completely optional, but reduces the size of the final future
let store = stack.create_shared_store(DirKvBlobStore::new_default());
let mut matter = pin!(stack.run_preex(
// The Matter stack needs UDP sockets to communicate with other Matter devices
Expand Down
3 changes: 1 addition & 2 deletions examples/light.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ fn main() -> Result<(), Error> {
);

// Run the Matter stack with our handler
// Using `pin!` is completely optional, but saves some memory due to `rustc`
// not being very intelligent w.r.t. stack usage in async functions
// Using `pin!` is completely optional, but reduces the size of the final future
let store = stack.create_shared_store(DirKvBlobStore::new_default());
let mut matter = pin!(stack.run_coex(
PreexistingWireless::new(
Expand Down
3 changes: 1 addition & 2 deletions examples/light_eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ fn main() -> Result<(), Error> {
);

// Run the Matter stack with our handler
// Using `pin!` is completely optional, but saves some memory due to `rustc`
// not being very intelligent w.r.t. stack usage in async functions
// Using `pin!` is completely optional, but reduces the size of the final future
let store = stack.create_shared_store(DirKvBlobStore::new_default());
let mut matter = pin!(stack.run_preex(
// The Matter stack needs UDP sockets to communicate with other Matter devices
Expand Down