Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions beam-automigrate.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ library

hs-source-dirs: src
build-depends:
aeson >=1.4.4 && <2.2
aeson >=1.4.4 && <2.3
, base >=4.9 && <5
, beam-core >=0.9 && <0.11
, beam-postgres >=0.5 && <0.6
Expand All @@ -50,9 +50,9 @@ library
, dlist >=0.8.0 && <1.1
, microlens >=0.4.10 && <0.6
, mtl >=2.2.2 && <2.4
, postgresql-simple >=0.5.4 && <0.7.0.0
, postgresql-simple >=0.5.4 && <0.7.1.0
, pretty-simple >=2.2.0 && <4.2
, QuickCheck >=2.13 && <2.15
, QuickCheck >=2.13 && <2.18
, quickcheck-instances >=0.3 && <0.4
, scientific >=0.3.6 && <0.5
, splitmix >=0.0.3 && <0.2
Expand All @@ -61,7 +61,7 @@ library
, time >=1.8.0 && <2
, transformers >=0.5.6 && <0.7
, uuid >=1.3 && <1.4
, vector >=0.12.0.3 && <0.13.0.0
, vector >=0.12.0.3 && <0.14.0.0

default-language: Haskell2010
default-extensions:
Expand Down
1 change: 1 addition & 0 deletions src/Database/Beam/AutoMigrate.hs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ module Database.Beam.AutoMigrate
where

import Control.Exception
import Control.Monad (when, forM_)
import Control.Monad.Except
import Control.Monad.Identity (runIdentity)
import Control.Monad.State.Strict
Expand Down
1 change: 1 addition & 0 deletions src/Database/Beam/AutoMigrate/Postgres.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module Database.Beam.AutoMigrate.Postgres
)
where

import Control.Monad (guard)
import Control.Monad.State
import Data.Bits (shiftR, (.&.))
import Data.ByteString (ByteString)
Expand Down
1 change: 1 addition & 0 deletions src/Database/Beam/AutoMigrate/Util.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module Database.Beam.AutoMigrate.Util where

import Control.Applicative.Lift
import Control.Monad.Except
import Control.Monad.Trans.Class (lift)
import Data.Char
import Data.Functor.Constant
import Data.Set (Set)
Expand Down
Loading