Trying to add it as a dependency for an empty new project does not compile.
Steps to reproduce:
cargo new --bin repro
cd repro
cargo add reqwless@0.14.0
cargo build # fails
A fix for this is adding der version 0.8.0 with the heapless dependency:
# Continuing the last session
cargo add der@0.8.0 -F heapless
cargo b # works
Might be a duplicate of #131 but this ones refers to the version published to crates.io (and the latest version available) instead of master.
I'll be happy to help fix this, since the issue is likely connected to embedded-tls, some guidance would be appreciated to align with the preferred approach.
Trying to add it as a dependency for an empty new project does not compile.
Steps to reproduce:
A fix for this is adding
derversion 0.8.0 with the heapless dependency:Might be a duplicate of #131 but this ones refers to the version published to
crates.io(and the latest version available) instead of master.I'll be happy to help fix this, since the issue is likely connected to embedded-tls, some guidance would be appreciated to align with the preferred approach.