escot/escot.cabal

35 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2022-09-22 10:03:58 +00:00
cabal-version: >=1.10
name: escot
version: 0.1.0.0
author: flupe
maintainer: lucas@escot.me
build-type: Simple
executable escot
main-is: Main.hs
hs-source-dirs: src
other-modules: Config
2023-01-25 20:29:49 +00:00
, Publications
2022-09-22 10:03:58 +00:00
build-depends: base
2023-01-25 20:29:49 +00:00
, achille >= 0.1.0 && < 0.2.0
, achille-pandoc >= 0.0.0 && < 0.1.0
, achille-stache >= 0.0.0 && < 0.1.0
, achille-yaml >= 0.0.0 && < 0.1.0
, binary
2022-09-22 10:03:58 +00:00
, pandoc
, pandoc-types
, text
, aeson
, time
default-extensions: BlockArguments
, DeriveAnyClass
2023-01-25 20:29:49 +00:00
, DerivingStrategies
, DuplicateRecordFields
, LambdaCase
, NoImplicitPrelude
, OverloadedStrings
, QualifiedDo
2022-09-22 10:03:58 +00:00
, RecordWildCards
ghc-options: -threaded
2023-01-25 20:29:49 +00:00
default-language: GHC2021