matrix-media-expanded/haskell-template.cabal

97 lines
2 KiB
Text
Raw Normal View History

2021-05-31 23:19:51 +00:00
cabal-version: 2.4
name: haskell-template
version: 0.1.0.0
2021-08-04 14:33:15 +00:00
license: MIT
2022-01-08 16:55:00 +00:00
copyright: 2022 Sridhar Ratnakumar
2021-05-31 23:19:51 +00:00
maintainer: srid@srid.ca
author: Sridhar Ratnakumar
category: Web
-- TODO: Before hackage release.
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
extra-source-files:
LICENSE
README.md
executable haskell-template
build-depends:
, aeson
, async
, base >=4.13.0.0 && <=4.18.0.0
2021-05-31 23:19:51 +00:00
, bytestring
, containers
, data-default
, directory
, filepath
, mtl
2022-03-23 17:48:57 +00:00
, optics-core
2021-05-31 23:19:51 +00:00
, profunctors
, relude
, shower
, text
, time
, with-utf8
mixins:
base hiding (Prelude),
relude (Relude as Prelude, Relude.Container.One),
relude
ghc-options:
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
2022-01-13 23:23:29 +00:00
-Wmissing-deriving-strategies -Wunused-foralls -Wunused-foralls
-fprint-explicit-foralls -fprint-explicit-kinds
2021-05-31 23:19:51 +00:00
default-extensions:
2022-01-13 23:23:29 +00:00
NoStarIsType
BangPatterns
ConstraintKinds
DataKinds
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
DerivingStrategies
DerivingVia
EmptyCase
EmptyDataDecls
EmptyDataDeriving
ExistentialQuantification
ExplicitForAll
2021-05-31 23:19:51 +00:00
FlexibleContexts
FlexibleInstances
2022-01-13 23:23:29 +00:00
GADTSyntax
GeneralisedNewtypeDeriving
ImportQualifiedPost
2021-05-31 23:19:51 +00:00
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
2022-01-13 23:23:29 +00:00
NumericUnderscores
2021-05-31 23:19:51 +00:00
OverloadedStrings
2022-01-13 23:23:29 +00:00
PolyKinds
PostfixOperators
RankNTypes
2021-05-31 23:19:51 +00:00
ScopedTypeVariables
2022-01-13 23:23:29 +00:00
StandaloneDeriving
StandaloneKindSignatures
2021-05-31 23:19:51 +00:00
TupleSections
2022-01-13 23:23:29 +00:00
TypeApplications
TypeFamilies
TypeOperators
2021-05-31 23:19:51 +00:00
ViewPatterns
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010