fix(iterator): block size error is cleaner
... | @@ -6,7 +6,7 @@ edition = "2021" | ... | @@ -6,7 +6,7 @@ edition = "2021" |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | [dependencies] | ||
embassy-time = { version = "0.3.2", features = ["log", "std", ] } | embassy-time = { version = "0.3.2", features = ["log", "std"] } | ||
embassy-futures = "0.1.1" | embassy-futures = "0.1.1" | ||
[dev-dependencies] | [dev-dependencies] | ||
... | @@ -20,3 +20,7 @@ critical-section = { version = "1.1", features = ["std"] } | ... | @@ -20,3 +20,7 @@ critical-section = { version = "1.1", features = ["std"] } |
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "bc0180800d751e651c0d15c807285c11cdb4f486" } | embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "bc0180800d751e651c0d15c807285c11cdb4f486" } | ||
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "bc0180800d751e651c0d15c807285c11cdb4f486" } | embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "bc0180800d751e651c0d15c807285c11cdb4f486" } | ||
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "bc0180800d751e651c0d15c807285c11cdb4f486" } | embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "bc0180800d751e651c0d15c807285c11cdb4f486" } | ||
[profile.release-with-debug] | |||
inherits = "release" | |||
debug = true |
Please register or sign in to comment