I've using afl.rs to fuzz this crate. And I found a panic issue in VersionReq. The code to replay the issue is
let _ = semver::VersionReq::parse("80000000000000000000");
And from the panic reportn, it seems that this panic is caused by use unwrap on a Result which may return err.

I hope you can check if this is a bug need to be fixed. Thanks a lot.
I've using afl.rs to fuzz this crate. And I found a panic issue in VersionReq. The code to replay the issue is
And from the panic reportn, it seems that this panic is caused by use unwrap on a Result which may return err.

I hope you can check if this is a bug need to be fixed. Thanks a lot.