-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for no_std
#54
Conversation
Decided to skip the |
Does not play well with examples since they require |
When rust-lang/cargo#1570 has been resolved we can also add |
Support for using Chomp without Rust's standard library, instead relying solely on the
core
module.types::Buffer::to_vec
andtypes::Buffer::as_vec
will not be a part of Chomp when built withcore
.buffer
module will require some refactoring to allow for usage withoutstd::io
, and the buffer for the fixed-buffer needs to be user-supplied (because we can't allocate ourselves). See https://github.com/whitequark/rust-log_buffer for a good example on how to use user-provided buffers.parsers::Error
cannot implementstd::error::Error