rsip 0.1.2

SIP Rust library, parser & generator of SIP
Documentation
1
2
3
4
5
6
7
8
9
10
# To Do
* I need to create a nom func for token:
```
token       =  1*(alphanum / "-" / "." / "!" / "%" / "*"
                     / "_" / "+" / "`" / "'" / "~" )
```
Usefull to parse display names
* convert all TryInto for Tokenizer to TryFrom<Tokenizer> for Type
* generalize all common Tokenizers around AbstractInput trait
  * this is needed in cases where we already have utf8 Strings and we want to parse them (like in headers)