FactbirdHQ / atat

no_std crate for parsing AT commands
Apache License 2.0
115 stars 31 forks source link

add alloc feature to serde_at to enable alloc::string::String parsing #192

Closed dragonnn closed 11 months ago

dragonnn commented 11 months ago

When using alloc on embedded String can be used through alloc::string::String. This PR adds support for alloc to serde_at and when the feature is enabled it enables parsing deserialize_string by using directly deserialize_str with does seam to work perfectly fine in my tests.