Skip to content

Commit 6ecd0a6

Browse files
committed
Remove unused constraints
1 parent 6039959 commit 6ecd0a6

File tree

4 files changed

+3
-17
lines changed

4 files changed

+3
-17
lines changed

patch.cabal

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,15 @@ tested-with:
2222
library
2323
hs-source-dirs: src
2424
build-depends: base >= 4.9 && < 4.14
25-
, bifunctors >= 5.2 && < 5.6
26-
, comonad >= 5.0.4 && < 5.1
2725
, constraints-extras >= 0.3 && < 0.4
2826
, containers >= 0.6 && < 0.7
2927
, dependent-map >= 0.3 && < 0.4
3028
, dependent-sum >= 0.6 && < 0.7
31-
, lens >= 4.7 && < 5
3229
, monoidal-containers >= 0.6 && < 0.7
33-
, mtl >= 2.1 && < 2.3
34-
, prim-uniq >= 0.1.0.1 && < 0.2
35-
, primitive >= 0.5 && < 0.8
36-
, profunctors >= 5.3 && < 5.6
37-
, random == 1.1.*
38-
, ref-tf == 0.4.*
39-
, reflection == 2.1.*
4030
, semialign >=1 && <1.2
4131
, semigroupoids >= 4.0 && < 6
42-
, stm >= 2.4 && < 2.6
43-
, syb >= 0.5 && < 0.8
4432
, these >= 1 && <1.1
45-
, time >= 1.4 && < 1.10
4633
, transformers >= 0.5.6.0 && < 0.6
47-
, unbounded-delays >= 0.1.0.0 && < 0.2
4834
, witherable >= 0.3 && < 0.3.2
4935

5036
exposed-modules: Data.Functor.Misc

src/Data/Functor/Misc.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ module Data.Functor.Misc
3838
) where
3939

4040
import Control.Applicative ((<$>))
41-
import Control.Monad.Identity
4241
import Data.Dependent.Map (DMap)
4342
import qualified Data.Dependent.Map as DMap
4443
import Data.Dependent.Sum
44+
import Data.Functor.Identity
4545
import Data.GADT.Compare
4646
import Data.GADT.Show
4747
import Data.IntMap (IntMap)

src/Data/Patch/Class.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- | The interface for types which represent changes made to other types
33
module Data.Patch.Class where
44

5-
import Control.Monad.Identity
5+
import Data.Functor.Identity
66
import Data.Maybe
77
import Data.Semigroup (Semigroup(..))
88

src/Data/Patch/MapWithMove.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module Data.Patch.MapWithMove where
1313
import Data.Patch.Class
1414

1515
import Control.Arrow
16-
import Control.Monad.State
16+
import Control.Monad.Trans.State
1717
import Data.Foldable
1818
import Data.Function
1919
import Data.List

0 commit comments

Comments
 (0)