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

Make allsorts run on no_std #42

Closed
wants to merge 8 commits into from
Closed

Commits on Feb 3, 2021

  1. Initial no_std migration (warning: breaks compatibility!)

    - most uses of HashMap were replaced by BTreeMap because HashMap
      does not exist on no_std (TODO: perf regression?)
    - use miniz_oxide instead of libz-sys for zlib implementation
    - use custom allocator for brotli decoding
    - make "std" an optional feature, enabled by default
    - put blanket std::error::Error impls behind std feature flag
    fschutt committed Feb 3, 2021
    Configuration menu
    Copy the full SHA
    16279ea View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2021

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

Commits on Feb 5, 2021

  1. Configuration menu
    Copy the full SHA
    7f52b28 View commit details
    Browse the repository at this point in the history
  2. Swap flate2 for miniz_oxide

    fschutt committed Feb 5, 2021
    Configuration menu
    Copy the full SHA
    d7bba39 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f3724cf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8f84a64 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    39087a1 View commit details
    Browse the repository at this point in the history
  6. Port tests to no_std

    fschutt committed Feb 5, 2021
    Configuration menu
    Copy the full SHA
    a8635cc View commit details
    Browse the repository at this point in the history