lang/langfilter/langfilter.cabal

44 lines
990 B
Plaintext
Raw Normal View History

2020-08-18 12:33:25 -04:00
cabal-version: 2.2
name: langfilter
2023-10-30 07:03:29 -04:00
version: 0.1.1
2020-08-18 12:33:25 -04:00
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:
2023-12-23 19:41:12 -05:00
base >= 4.14.0.0 && < 4.20,
containers ^>= 0.6.2.1,
filepath ^>= 1.4.2.1,
2023-12-23 19:41:12 -05:00
megaparsec ^>= 9.6.1,
process ^>= 1.6.11.0,
2023-05-03 20:33:59 -04:00
pandoc-types ^>= 1.23,
2023-12-23 19:41:12 -05:00
text ^>= 2.1,
2020-11-04 13:04:55 -05:00
pretty-show ^>= 1.10