File tree Expand file tree Collapse file tree 4 files changed +3
-17
lines changed Expand file tree Collapse file tree 4 files changed +3
-17
lines changed Original file line number Diff line number Diff line change @@ -22,29 +22,15 @@ tested-with:
22
22
library
23
23
hs-source-dirs : src
24
24
build-depends : base >= 4.9 && < 4.14
25
- , bifunctors >= 5.2 && < 5.6
26
- , comonad >= 5.0.4 && < 5.1
27
25
, constraints-extras >= 0.3 && < 0.4
28
26
, containers >= 0.6 && < 0.7
29
27
, dependent-map >= 0.3 && < 0.4
30
28
, dependent-sum >= 0.6 && < 0.7
31
- , lens >= 4.7 && < 5
32
29
, 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. *
40
30
, semialign >= 1 && < 1.2
41
31
, semigroupoids >= 4.0 && < 6
42
- , stm >= 2.4 && < 2.6
43
- , syb >= 0.5 && < 0.8
44
32
, these >= 1 && < 1.1
45
- , time >= 1.4 && < 1.10
46
33
, transformers >= 0.5.6.0 && < 0.6
47
- , unbounded-delays >= 0.1.0.0 && < 0.2
48
34
, witherable >= 0.3 && < 0.3.2
49
35
50
36
exposed-modules : Data.Functor.Misc
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ module Data.Functor.Misc
38
38
) where
39
39
40
40
import Control.Applicative ((<$>) )
41
- import Control.Monad.Identity
42
41
import Data.Dependent.Map (DMap )
43
42
import qualified Data.Dependent.Map as DMap
44
43
import Data.Dependent.Sum
44
+ import Data.Functor.Identity
45
45
import Data.GADT.Compare
46
46
import Data.GADT.Show
47
47
import Data.IntMap (IntMap )
Original file line number Diff line number Diff line change 2
2
-- | The interface for types which represent changes made to other types
3
3
module Data.Patch.Class where
4
4
5
- import Control.Monad .Identity
5
+ import Data.Functor .Identity
6
6
import Data.Maybe
7
7
import Data.Semigroup (Semigroup (.. ))
8
8
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module Data.Patch.MapWithMove where
13
13
import Data.Patch.Class
14
14
15
15
import Control.Arrow
16
- import Control.Monad.State
16
+ import Control.Monad.Trans. State
17
17
import Data.Foldable
18
18
import Data.Function
19
19
import Data.List
You can’t perform that action at this time.
0 commit comments