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

Change String to &str for all Rocket functions and some other fixes #3491

Merged
merged 3 commits into from
Apr 30, 2023

Commits on Apr 30, 2023

  1. Fix admin post endpoints

    BlackDex committed Apr 30, 2023
    Configuration menu
    Copy the full SHA
    18abf22 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    951ba55 View commit details
    Browse the repository at this point in the history
  3. Change String to &str for all Rocket functions

    During setting the latest commit hash for Rocket and updating all the
    other crates, there were some messages regarding the usage of `String`
    for the Rocket endpoint function calls. I acted upon this message and
    changed all `String` types to `&str` and modified the code where needed.
    
    This ended up in less alloc calls, and probably also a bit less memory usage.
    
    - Updated all the crates and commit hashes
    - Modified all `String` to `&str` where applicable
    BlackDex committed Apr 30, 2023
    Configuration menu
    Copy the full SHA
    f906f62 View commit details
    Browse the repository at this point in the history