lang/langfilter/langfilter.cabal

44 lines
982 B
Plaintext
Raw Normal View History

2020-08-18 12:33:25 -04:00
cabal-version: 2.2
name: langfilter
version: 0.1.0
synopsis: filter for conlang stuff
license: AGPL-3.0-or-later
author: Rhiannon Morris <rhi@rhiannon.website>
maintainer: Rhiannon Morris <rhi@rhiannon.website>
executable langfilter
hs-source-dirs: .
main-is: Main.hs
2021-04-28 06:37:42 -04:00
other-modules:
Lang,
Ebnf,
Spans,
LaantasImage,
Glosses
2020-08-18 12:33:25 -04:00
ghc-options:
2020-11-04 13:04:55 -05:00
-Wall -Wno-missing-signatures -Wno-missing-pattern-synonym-signatures
-Wno-name-shadowing
-threaded -rtsopts -with-rtsopts=-N
2020-08-18 12:33:25 -04:00
default-language: Haskell2010
default-extensions:
BlockArguments,
ConstraintKinds,
2020-08-18 12:33:25 -04:00
LambdaCase,
FlexibleContexts,
ImplicitParams,
MonadComprehensions,
2020-11-04 13:04:55 -05:00
OverloadedStrings,
2020-08-18 12:33:25 -04:00
PatternSynonyms,
RecordWildCards,
2020-08-18 12:33:25 -04:00
ViewPatterns
build-depends:
2022-03-29 22:34:27 -04:00
base >= 4.14.0.0 && < 4.17,
containers ^>= 0.6.2.1,
filepath ^>= 1.4.2.1,
2021-06-03 23:21:47 -04:00
megaparsec ^>= 9.0.1,
process ^>= 1.6.11.0,
2020-11-04 13:04:55 -05:00
pandoc-types ^>= 1.22,
text,
pretty-show ^>= 1.10