Tommy Malmqvist
Tommy Malmqvist
Hello, can confirm I have the same issue on 1.4.1. Would love to have a fix for this since I'm using skeletons while dragging grid items. Clicking once means my...
Built OK on OS X Yosemite 10.10.1 with cmake 3.0.2.
Hello, this sounds very interesting. I have no experience in no_std support but will check your PR as soon as I can :) Thanks!
Hello, I can you rebase on the new code in main. Do you have any idea how to solve the the double Vec in `lib.rs`? lib.rs ```rust #[cfg(feature="std")] #[allow(type_alias_bounds)] pub...
> Does current implementation with double Vec cause any trouble? std::Vec is used in std builds, and heapless::Vec is used in no_std builds. > > One think that I don't...
> One possible solution would be to select Vec when the features are `any(all(feature = "std", not(feature = "no_std")), all(feature = "std", feature = "no_std"))` and then make the heapless...
Closing this
Hi @fulup-bzh, thanks. Will check this out when I have the time. As far as I remember there where multiple responses that can have empty objects.
I use Chrono to validate and serialize the dateTime strings being sent to be valid dateTime strings specified in RFC3339, which the OCPP standard is using. If found it was...
> In this case when not enforcing the validation and relying only on serde for serialisation/deserialisation those dependencies should drop, isn't it ? Yes, that is true. You would need...