# Inpt Inpt is a derive crate for dumb type-level text parsing. Read the [lastest documentation](https://samsartor.gitlab.io/inpt/inpt/index.html) for more information. ## Introduction Imagine you need to chop up an annoying string and convert all the bits to useful types. You could write that sort of code by hand using `split` and `from_str`, but the boiler-plate of unwrapping and checking quickly looses all charm. Especially since that sort of parsing shows up a lot in timed programming competitions like [advent of code](https://adventofcode.com). Inpt tries to write that sort of parsing code for you, automatically splitting input strings based on field types and an optional regex. Inpt is absolutely _not_ performant, strict, or formal. Whenever possible, it does the obvious thing: