tafia / quick-protobuf

A rust implementation of protobuf parser
MIT License
446 stars 82 forks source link

bug: `pb-rs --nostd --dont_use_cow` is missing imports #169

Open benma opened 4 years ago

benma commented 4 years ago

In this combination, those imports are missing:

use alloc::borrow::ToOwned;
use alloc::string::String;

Those are not imported by default in no_std.