Skip to content

Commit 8ae3e38

Browse files
authored
Merge pull request #18 from haskell-works/remove-unused-imports
Remove unused imports
2 parents 55464af + fe587a2 commit 8ae3e38

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

app/App/Commands.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module App.Commands where
22

33
import App.Commands.CreateIndex
4-
import Data.Semigroup ((<>))
54
import Options.Applicative
65

76
commands :: Parser (IO ())

app/App/Commands/CreateIndex.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ module App.Commands.CreateIndex
1010
import Control.Lens
1111
import Data.Generics.Product.Any
1212
import Data.Maybe
13-
import Data.Semigroup ((<>))
1413
import Data.Word
1514
import Foreign
1615
import Options.Applicative hiding (columns)

app/Main.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ module Main where
22

33
import App.Commands
44
import Control.Monad
5-
import Data.Semigroup ((<>))
65
import Options.Applicative
76

87
main :: IO ()

hw-json-simple-cursor.cabal

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ common text { build-depends: text >=
6363
common vector { build-depends: vector >= 0.12 && < 0.13 }
6464
common word8 { build-depends: word8 >= 0.1 && < 0.2 }
6565

66-
common semigroups { if impl(ghc < 8 ) { build-depends: semigroups >= 0.16 && < 0.19 } }
67-
6866
common hw-json-simple-cursor
6967
build-depends: hw-json-simple-cursor
7068

@@ -111,7 +109,6 @@ executable hw-json
111109
, lens
112110
, mmap
113111
, optparse-applicative
114-
, semigroups
115112
, text
116113
, vector
117114
main-is: Main.hs
@@ -148,7 +145,6 @@ benchmark bench
148145
, directory
149146
, hw-json-simple-cursor
150147
, mmap
151-
, semigroups
152148
type: exitcode-stdio-1.0
153149
main-is: Main.hs
154150
hs-source-dirs: bench

0 commit comments

Comments
 (0)