Skip to content
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

argh_shared: change serde features to allow no_std use #183

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jan 17, 2024

  1. Change serde features to allow no_std use

    The `argh_shared` crate depends on `serde`, which uses `std` in its default configuration. This makes it incompatible with `no_std` crates.
    
    As per the [`serde` docs](https://serde.rs/no-std.html), adding `default-features = false` makes it support `no_std`, and adding the `alloc` feature lets it opt back into memory allocation so it can still handle `String`s and such.
    wgwoods authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    a8ef6ec View commit details
    Browse the repository at this point in the history