Open konstin opened 11 months ago
Would it be possible to allow &[u8] of something similar as input to tl::parse instead of &str, given that the parser uses an u8 stream internally? This would avoid parsing our network request into utf8 before parsing.
&[u8]
tl::parse
&str
u8
Would it be possible to allow
&[u8]
of something similar as input totl::parse
instead of&str
, given that the parser uses anu8
stream internally? This would avoid parsing our network request into utf8 before parsing.