blob: 61b97c7a8f3f9122010f6747bc338922723fea5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
cabal-version: 2.0
name: refactor-type-parameters
synopsis: Refactor type parameters of a Haskell type
version: 0.0.1.0
license: MIT
author: Tom Smeding
maintainer: tom@tomsmeding.com
build-type: Simple
executable refactor-type-parameters
main-is: Main.hs
other-modules: Pattern, SourceFile, Parser, Pretty
build-depends: base >= 4.13 && < 4.15,
mtl,
parsec,
text,
optparse-applicative
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -rtsopts
|