Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information