diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+0.5.3.0
+=======
+
+* Support `servant-0.13`.
+
 0.5.2.0
 =======
 
diff --git a/example/acid/servant-auth-token-example-acid.cabal b/example/acid/servant-auth-token-example-acid.cabal
--- a/example/acid/servant-auth-token-example-acid.cabal
+++ b/example/acid/servant-auth-token-example-acid.cabal
@@ -29,17 +29,17 @@
     , aeson-injector                >= 1.1      && < 1.2
     , bytestring                    >= 0.10     && < 0.11
     , exceptions                    >= 0.8      && < 0.9
-    , http-types                    >= 0.9      && < 0.10
+    , http-types                    >= 0.9      && < 0.13
     , monad-control                 >= 1.0      && < 1.1
     , monad-logger                  >= 0.3      && < 0.4
     , mtl                           >= 2.2      && < 2.3
     , optparse-applicative          >= 0.12     && < 0.15
     , safecopy                      >= 0.9      && < 0.10
-    , servant                       >= 0.9      && < 0.13
+    , servant                       >= 0.9      && < 0.14
     , servant-auth-token            >= 0.5      && < 0.6
     , servant-auth-token-acid       >= 0.5      && < 0.6
     , servant-auth-token-api        >= 0.5      && < 0.6
-    , servant-server                >= 0.12     && < 0.13
+    , servant-server                >= 0.12     && < 0.14
     , text                          >= 1.2      && < 1.3
     , time                          >= 1.6      && < 1.9
     , transformers-base             >= 0.4      && < 0.5
diff --git a/example/leveldb/servant-auth-token-example-leveldb.cabal b/example/leveldb/servant-auth-token-example-leveldb.cabal
--- a/example/leveldb/servant-auth-token-example-leveldb.cabal
+++ b/example/leveldb/servant-auth-token-example-leveldb.cabal
@@ -28,18 +28,18 @@
     , aeson-injector                >= 1.1      && < 1.2
     , bytestring                    >= 0.10     && < 0.11
     , exceptions                    >= 0.8      && < 0.9
-    , http-types                    >= 0.9      && < 0.10
+    , http-types                    >= 0.9      && < 0.13
     , leveldb-haskell               >= 0.6      && < 0.7
     , monad-control                 >= 1.0      && < 1.1
     , monad-logger                  >= 0.3      && < 0.4
     , mtl                           >= 2.2      && < 2.3
     , optparse-applicative          >= 0.12     && < 0.15
     , safecopy                      >= 0.9      && < 0.10
-    , servant                       >= 0.12     && < 0.13
+    , servant                       >= 0.12     && < 0.14
     , servant-auth-token            >= 0.5      && < 0.6
     , servant-auth-token-api        >= 0.5      && < 0.6
     , servant-auth-token-leveldb    >= 0.5      && < 0.6
-    , servant-server                >= 0.12     && < 0.13
+    , servant-server                >= 0.12     && < 0.14
     , text                          >= 1.2      && < 1.3
     , time                          >= 1.6      && < 1.9
     , transformers-base             >= 0.4      && < 0.5
diff --git a/example/persistent/servant-auth-token-example-persistent.cabal b/example/persistent/servant-auth-token-example-persistent.cabal
--- a/example/persistent/servant-auth-token-example-persistent.cabal
+++ b/example/persistent/servant-auth-token-example-persistent.cabal
@@ -27,18 +27,18 @@
     , aeson-injector                >= 1.1      && < 1.2
     , bytestring                    >= 0.10     && < 0.11
     , exceptions                    >= 0.8      && < 0.9
-    , http-types                    >= 0.9      && < 0.10
+    , http-types                    >= 0.9      && < 0.13
     , monad-control                 >= 1.0      && < 1.1
     , monad-logger                  >= 0.3      && < 0.4
     , mtl                           >= 2.2      && < 2.3
     , optparse-applicative          >= 0.12     && < 0.15
     , persistent                    >= 2.6      && < 2.8
     , persistent-postgresql         >= 2.6      && < 2.8
-    , servant                       >= 0.12     && < 0.13
+    , servant                       >= 0.12     && < 0.14
     , servant-auth-token            >= 0.5      && < 0.6
     , servant-auth-token-api        >= 0.5      && < 0.6
     , servant-auth-token-persistent >= 0.6      && < 0.7
-    , servant-server                >= 0.12     && < 0.13
+    , servant-server                >= 0.12     && < 0.14
     , text                          >= 1.2      && < 1.3
     , time                          >= 1.6      && < 1.9
     , transformers-base             >= 0.4      && < 0.5
diff --git a/servant-auth-token.cabal b/servant-auth-token.cabal
--- a/servant-auth-token.cabal
+++ b/servant-auth-token.cabal
@@ -1,5 +1,5 @@
 name:                servant-auth-token
-version:             0.5.2.0
+version:             0.5.3.0
 synopsis:            Servant based API and server for token based authorisation
 description:         Please see README.md
 homepage:            https://github.com/ncrashed/servant-auth-token#readme
@@ -67,9 +67,9 @@
     , http-api-data           >= 0.3.5  && < 0.4
     , mtl                     >= 2.2    && < 2.3
     , pwstore-fast            >= 2.4    && < 2.5
-    , servant                 >= 0.11   && < 0.13
+    , servant                 >= 0.11   && < 0.14
     , servant-auth-token-api  >= 0.5    && < 0.6
-    , servant-server          >= 0.11   && < 0.13
+    , servant-server          >= 0.11   && < 0.14
     , text                    >= 1.2    && < 1.3
     , time                    >= 1.5    && < 1.9
     , transformers            >= 0.4    && < 0.6
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -15,7 +15,7 @@
 # resolver:
 #  name: custom-snapshot
 #  location: "./custom-snapshot.yaml"
-resolver: lts-10.4
+resolver: lts-10.5
 
 # User packages to be built.
 # Various formats can be used as shown in the example below.
@@ -60,13 +60,17 @@
 # (e.g., acme-missiles-0.3)
 extra-deps:
 - acid-state-0.14.3
+- http-types-0.12.1
 - rocksdb-haskell-1.0.1
 - safecopy-store-0.9.6
-- servant-0.12.1
-- servant-auth-token-api-0.5.1.0
-- servant-client-0.12.0.1
-- servant-docs-0.11.1
-- servant-server-0.12
+- servant-0.13
+- servant-auth-token-api-0.5.2.0
+- servant-client-0.13
+- servant-docs-0.11.2
+- servant-server-0.13
+- servant-swagger-1.1.5
+- singleton-bool-0.1.3
+- text-1.2.3.0
 
 # Override default flag values for local packages and extra-deps
 flags: {}
