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

Add the ability to work in no-std (optionally with alloc) #132

Merged
merged 4 commits into from
Jun 25, 2024

Commits on May 21, 2024

  1. Configuration menu
    Copy the full SHA
    da0c7b5 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Add the ability to work in no-std (optionally with alloc)

    By default, the `std` feature is enabled, but with
    disable-default-features, it can now be either no-std/no-alloc.
    
    This did involve a breaking change with the serialization traits, to allow
    no-alloc serialization.
    
    Serialize/Deserialize traits were sealed, and most functions were hidden
    Dr-Emann committed May 22, 2024
    Configuration menu
    Copy the full SHA
    4839b15 View commit details
    Browse the repository at this point in the history
  2. Check in Cargo.lock

    Per [updated guidance][1], it is recommended to commit the Cargo.lock, even for
    libraries.
    
    [1]: https://blog.rust-lang.org/2023/08/29/committing-lockfiles.html
    Dr-Emann committed May 22, 2024
    Configuration menu
    Copy the full SHA
    de8360e View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Configuration menu
    Copy the full SHA
    57ef1a7 View commit details
    Browse the repository at this point in the history