DarrenBaldwin07 / clerk-rs

An unofficial Rust SDK for Clerk.dev
https://crates.io/crates/clerk-rs
MIT License
58 stars 23 forks source link

Remove panics and return ClerkError from validate_jwt #42

Closed hazelmeow closed 1 month ago

hazelmeow commented 1 month ago

This PR replaces some potential panics in validate_jwt with errors and changes the signature of validate_jwt to return Result<Jwt, Error> instead of Result<(bool, Jwt), bool>.