Skip to content

Remove unused imports #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 5, 2020
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
1 change: 0 additions & 1 deletion app/App/Commands.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module App.Commands where

import App.Commands.CreateIndex
import Data.Semigroup ((<>))
import Options.Applicative

commands :: Parser (IO ())
Expand Down
1 change: 0 additions & 1 deletion app/App/Commands/CreateIndex.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ module App.Commands.CreateIndex
import Control.Lens
import Data.Generics.Product.Any
import Data.Maybe
import Data.Semigroup ((<>))
import Data.Word
import Foreign
import Options.Applicative hiding (columns)
Expand Down
1 change: 0 additions & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module Main where

import App.Commands
import Control.Monad
import Data.Semigroup ((<>))
import Options.Applicative

main :: IO ()
Expand Down
4 changes: 0 additions & 4 deletions hw-json-simple-cursor.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ common text { build-depends: text >=
common vector { build-depends: vector >= 0.12 && < 0.13 }
common word8 { build-depends: word8 >= 0.1 && < 0.2 }

common semigroups { if impl(ghc < 8 ) { build-depends: semigroups >= 0.16 && < 0.19 } }

common hw-json-simple-cursor
build-depends: hw-json-simple-cursor

Expand Down Expand Up @@ -111,7 +109,6 @@ executable hw-json
, lens
, mmap
, optparse-applicative
, semigroups
, text
, vector
main-is: Main.hs
Expand Down Expand Up @@ -148,7 +145,6 @@ benchmark bench
, directory
, hw-json-simple-cursor
, mmap
, semigroups
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench
Expand Down