okay, rust nerds: what's the equivalent of `strtol` in Rust? That is to say, I want to parse decimal, octal, or hexidecimal representations of an integer like a normal person. Do I seriously have to use libc::strtol?
A little more detail: right now I'm using clap to parse the cli. It defaults to using FromStr to parse the int, but of course FromStr doesn't handle hex/octal/etc because of course it doesn't
@phooky https://docs.rs/parse_int/latest/parse_int/fn.parse.html perhaps