about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 366a6022c2..40db6b7bd1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "alcoholic_jwt"
 description = "Library for validation of RS256 JWTs"
-version = "0.1.2"
+version = "1.0.0"
 authors = ["Vincent Ambo <vincent@aprila.no>"]
 keywords = ["jwt", "token", "jwks"]
 categories = ["authentication"]
diff --git a/src/lib.rs b/src/lib.rs
index 135b1df0f9..c98bee6150 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -88,7 +88,6 @@ use std::time::{UNIX_EPOCH, Duration, SystemTime};
 #[cfg(test)]
 mod tests;
 
-
 /// URL-safe character set without padding that allows trailing bits,
 /// which appear in some JWT implementations.
 ///