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

Remove allocations in Markup by switching to Cow<'static, str> #585

Merged
merged 5 commits into from
Sep 29, 2024

Commits on Sep 29, 2024

  1. Remove allocations in Markup by switching to Cow<'static, str>

    Now strings are only allocated if non-static
    (The vast majority of markup strings are `&'static`)
    rben01 authored and David Peter committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    761dbb7 View commit details
    Browse the repository at this point in the history
  2. Deduped some code

    rben01 authored and David Peter committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    3665c72 View commit details
    Browse the repository at this point in the history
  3. Formatting

    rben01 authored and David Peter committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    d3761b5 View commit details
    Browse the repository at this point in the history
  4. Minor code cleanup

    rben01 authored and David Peter committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    aacd700 View commit details
    Browse the repository at this point in the history
  5. Code cleanup reducing clones (in theory)

    rben01 authored and David Peter committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    d366ab8 View commit details
    Browse the repository at this point in the history