diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,6 +2,12 @@
 
 :warning: Currently, This library works on processors that support `AVX2` .
 
+## links
+
+- [Hackage](https://hackage.haskell.org/package/swisstable-0.1.0.1)
+
+## Benchmark snapshot
+
 15564c4
 ```
 benchmarking lookup(seq)/small/SwissTable
diff --git a/swisstable.cabal b/swisstable.cabal
--- a/swisstable.cabal
+++ b/swisstable.cabal
@@ -4,11 +4,11 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 2f9c118c109be85a1779a0713e0192b5bb52fcc83774f4555b155cc5e188a863
+-- hash: 5fef574e1937b884f6bad8ceedf9e2b80334d6db31ecd33f899c1aab7643f6c5
 
 name:           swisstable
-version:        0.1.0.1
-synopsis:       Google's SwissTable hash map
+version:        0.1.0.2
+synopsis:       SwissTable hash map
 description:    Please see the README on GitHub at <https://github.com/nakaji-dayo/hs-swisstable#readme>
 category:       Data
 homepage:       https://github.com/nakaji-dayo/hs-swisstable#readme
@@ -47,42 +47,43 @@
     , vector
   default-language: Haskell2010
 
-executable swisstable-bench
-  main-is: Main.hs
+test-suite swisstable-test
+  type: exitcode-stdio-1.0
+  main-is: Spec.hs
   other-modules:
+      Test.Basic
       Paths_swisstable
   hs-source-dirs:
-      bench
-  ghc-options: -O2
+      test
+  ghc-options: -threaded -rtsopts -with-rtsopts=-N
   build-depends:
       QuickCheck
     , base >=4.7 && <5
-    , criterion
-    , deepseq
     , hashable
-    , hashtables
     , primitive
     , swisstable
+    , tasty
+    , tasty-discover
+    , tasty-hunit
     , vector
   default-language: Haskell2010
 
-test-suite swisstable-test
+benchmark swisstable-bench
   type: exitcode-stdio-1.0
-  main-is: Spec.hs
+  main-is: Main.hs
   other-modules:
-      Test.Basic
       Paths_swisstable
   hs-source-dirs:
-      test
-  ghc-options: -threaded -rtsopts -with-rtsopts=-N
+      bench
+  ghc-options: -O2
   build-depends:
       QuickCheck
     , base >=4.7 && <5
+    , criterion
+    , deepseq
     , hashable
+    , hashtables
     , primitive
     , swisstable
-    , tasty
-    , tasty-discover
-    , tasty-hunit
     , vector
   default-language: Haskell2010
