vampirc / vampirc-uci

A Universal Chess Interface (UCI) protocol parser and message generator.
https://vampirc.kejzar.si
Apache License 2.0
19 stars 7 forks source link

parse_one panics on message with trailing whitespace #25

Open kesslwovv opened 1 year ago

kesslwovv commented 1 year ago

parse_one (and maybe others too) panics when the message has a trailing whitespace.

illustrated by the following program:

fn main() {
    vampirc_uci::parse_one("go ");
    //        whitespace here ^
}