lang/langfilter/langfilter.cabal

58 lines
1.2 KiB
Text
Raw Normal View History

2020-08-18 18:33:25 +02:00
cabal-version: 2.2
name: langfilter
2023-10-30 12:03:29 +01:00
version: 0.1.1
2020-08-18 18:33:25 +02:00
synopsis: filter for conlang stuff
license: AGPL-3.0-or-later
author: Rhiannon Morris <rhi@rhiannon.website>
maintainer: Rhiannon Morris <rhi@rhiannon.website>
2024-11-28 02:04:06 +01:00
common base
2020-08-18 18:33:25 +02:00
ghc-options:
2020-11-04 19:04:55 +01:00
-Wall -Wno-missing-signatures -Wno-missing-pattern-synonym-signatures
-Wno-name-shadowing
2020-08-18 18:33:25 +02:00
default-language: Haskell2010
default-extensions:
BlockArguments,
ConstraintKinds,
2020-08-18 18:33:25 +02:00
LambdaCase,
FlexibleContexts,
ImplicitParams,
MonadComprehensions,
2020-11-04 19:04:55 +01:00
OverloadedStrings,
2020-08-18 18:33:25 +02:00
PatternSynonyms,
RecordWildCards,
2024-11-28 02:04:06 +01:00
TupleSections,
2020-08-18 18:33:25 +02:00
ViewPatterns
build-depends:
2024-11-26 17:30:54 +01:00
base >= 4.14.0.0 && < 4.21,
containers >= 0.6 && < 0.8,
filepath ^>= 1.4.2.1,
2023-12-24 01:41:12 +01:00
megaparsec ^>= 9.6.1,
process ^>= 1.6.11.0,
2023-05-04 02:33:59 +02:00
pandoc-types ^>= 1.23,
2023-12-24 01:41:12 +01:00
text ^>= 2.1,
2024-11-28 01:32:27 +01:00
pretty-show ^>= 1.10,
laantas-script
2024-11-28 02:04:06 +01:00
2025-02-18 18:34:01 +01:00
common exe
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
2024-11-28 02:04:06 +01:00
library
import: base
hs-source-dirs: lib
exposed-modules:
Lang,
Ebnf,
Spans,
LaantasImage,
Glosses,
LangFilter
executable langfilter
2025-02-18 18:34:01 +01:00
import: base, exe
2024-11-28 02:04:06 +01:00
hs-source-dirs: main
main-is: Main.hs
build-depends: langfilter