diff options
author | Sam Scott <sam@osohq.com> | 2020-12-06 23:43:32 -0500 |
---|---|---|
committer | Sam Scott <sam@osohq.com> | 2020-12-06 23:43:48 -0500 |
commit | b7b2520107ecfca77520151c6dc3002442bf0f0b (patch) | |
tree | be49c18915bac69746fcbc2bfb3641b3994a83d1 /src/error.rs | |
parent | 3f77d51edcc0575df5204152cb0dd960604244dc (diff) |
Serialize bytes as percent-encoded data.
Fixes #40.
Thanks to @faulesocke for reporting.
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/error.rs b/src/error.rs index 6aac25f..b7c2042 100644 --- a/src/error.rs +++ b/src/error.rs @@ -21,10 +21,6 @@ pub enum Error { #[error("unsupported type for serialization")] Unsupported, - /// Error decoding `BASE64URL` data - #[error(transparent)] - Decoding(#[from] data_encoding::DecodeError), - /// Error proessing UTF-8 for a `String` #[error(transparent)] FromUtf8(#[from] string::FromUtf8Error), |