weeder/weeder.cabal

64 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-09-10 12:23:57 +03:00
cabal-version: 2.0
name: weeder
build-type: Simple
version: 1.0
2019-09-16 11:59:37 +03:00
library
build-depends: algebraic-graphs
, ansi-terminal
, base
, bytestring
, containers
, directory
, filepath
, ghc
, ghc-paths
, mtl
, optparse-applicative
, transformers
2019-09-10 12:23:57 +03:00
hs-source-dirs: src
2019-09-16 11:59:37 +03:00
exposed-modules: Weeder
2019-09-16 12:02:58 +03:00
executable weeder
build-depends: algebraic-graphs
, ansi-terminal
, base
, bytestring
, containers
, directory
, filepath
, ghc
, ghc-paths
, mtl
, optparse-applicative
, transformers
, weeder
, tasty
, tasty-hunit
main-is: Main.hs
hs-source-dirs: exe-weeder
ghc-options: -fwrite-ide-info
2019-09-16 11:59:37 +03:00
test-suite tests
build-depends: algebraic-graphs
, ansi-terminal
, base
, bytestring
, containers
, directory
, filepath
, ghc
, ghc-paths
, mtl
, optparse-applicative
, transformers
, weeder
, tasty
, tasty-hunit
main-is: Main.hs
hs-source-dirs: tests
2019-09-10 12:23:57 +03:00
ghc-options: -fwrite-ide-info
2019-09-16 11:59:37 +03:00
type: exitcode-stdio-1.0