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

ConvertCase trait as a wrapper for other convert case functions #27

Closed
wants to merge 9 commits into from

Commits on Dec 29, 2020

  1. Configuration menu
    Copy the full SHA
    6c384d8 View commit details
    Browse the repository at this point in the history
  2. Add .editorconfig

    jplatte committed Dec 29, 2020
    Configuration menu
    Copy the full SHA
    9ac1c74 View commit details
    Browse the repository at this point in the history
  3. Forbid unsafe code

    jplatte committed Dec 29, 2020
    Configuration menu
    Copy the full SHA
    894eab6 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2020

  1. Configuration menu
    Copy the full SHA
    523cf82 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2dbb21f View commit details
    Browse the repository at this point in the history
  3. CI: Use MSRV for build job

    jplatte committed Dec 30, 2020
    Configuration menu
    Copy the full SHA
    f48ec3e View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2021

  1. ConvertCase trait as a wrapper for other convert case functions

    ConvertCase implements convert_case() which accepts customization options to tweak behaviour of other case conversion functions. Currently, it accepts `number_starts_word` option to have word boundaries when characters in a word change from numeric to alphabetic or vice versa. 
    
    Other case conversion functions are implemented in terms on convert_case() by passing `number_starts_word` as false by default. 
    
    ref: withoutboats#18
    ref: Peternator7/strum#72
    ssd532 committed Jan 3, 2021
    Configuration menu
    Copy the full SHA
    7bae08a View commit details
    Browse the repository at this point in the history
  2. run cargo fmt

    ssd532 committed Jan 3, 2021
    Configuration menu
    Copy the full SHA
    3051136 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b94a2b8 View commit details
    Browse the repository at this point in the history