46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
cabal-version: 3.4
|
|
name: initial-encoding
|
|
version: 0.1.0.0
|
|
|
|
executable initial-encoding
|
|
main-is: Main.hs
|
|
build-depends: base ^>=4.14.3.0,
|
|
initial-encoding,
|
|
megaparsec,
|
|
mtl,
|
|
optparse-applicative,
|
|
parser-utils,
|
|
text,
|
|
hs-source-dirs: app
|
|
default-language: Haskell2010
|
|
|
|
library
|
|
build-depends: base ^>=4.14.3.0,
|
|
deepseq,
|
|
megaparsec,
|
|
mtl,
|
|
parser-combinators,
|
|
parser-utils,
|
|
text,
|
|
transformers,
|
|
transformers-either
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
exposed-modules: Parser.Initial
|
|
|
|
test-suite initial-encoding-test
|
|
type: exitcode-stdio-1.0
|
|
main-is: Driver.hs
|
|
hs-source-dirs: test
|
|
build-depends: base ^>=4.14.3.0,
|
|
HUnit,
|
|
hspec,
|
|
initial-encoding,
|
|
megaparsec,
|
|
parser-utils,
|
|
tasty,
|
|
tasty-discover,
|
|
tasty-hspec,
|
|
text
|
|
other-modules: Test.Parser.InitialTest
|