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

ICE when compiling this core change #121064

Closed
wants to merge 2 commits into from

Commits on Feb 14, 2024

  1. perf: improve write_fmt to handle simple strings

    Per @dtolnay suggestion in serde-rs/serde#2697 (comment) - attempt to speed up performance in the cases of a simple string format without arguments:
    
    ```rust
    write!(f, "text")  ->  f.write_str("text")
    ```
    nyurik committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    4a2d4b6 View commit details
    Browse the repository at this point in the history
  2. wip

    nyurik committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    0ecae1a View commit details
    Browse the repository at this point in the history