diff --git a/src/Data/Option.hs b/src/Data/Option.hs
--- a/src/Data/Option.hs
+++ b/src/Data/Option.hs
@@ -5,7 +5,6 @@
 import Control.DeepSeq
 import Control.Monad
 import Data.Aeson
-import Data.Store
 import GHC.Generics
 
 data Option a
@@ -14,7 +13,6 @@
    deriving (Show, Eq, Ord, Generic)
 
 instance NFData a => NFData (Option a)
-instance Store a => Store (Option a)
 
 instance Functor Option where
     fmap f x =
diff --git a/strict-data.cabal b/strict-data.cabal
--- a/strict-data.cabal
+++ b/strict-data.cabal
@@ -1,5 +1,5 @@
 name:                strict-data
-version:             0.1.0.0
+version:             0.1.1.0
 synopsis:            Verious useful strict data structures
 description:         Please see README.md
 homepage:            https://github.com/agrafix/strict-data#readme
@@ -17,7 +17,7 @@
 library
   hs-source-dirs:      src
   exposed-modules:     Data.Option
-  build-depends:       base >= 4.7 && < 5, aeson, store, deepseq
+  build-depends:       base >= 4.7 && < 5, aeson, deepseq
   default-language:    Haskell2010
 
 source-repository head
