buuka/buuka.cabal

79 lines
2.4 KiB
Plaintext
Raw Normal View History

2020-12-30 18:35:47 +02:00
cabal-version: 2.4
-- Initial package description 'buuka.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: buuka
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Mats Rauhala
maintainer: mats.rauhala@iki.fi
-- copyright:
category: Web
extra-source-files: CHANGELOG.md
2020-12-30 22:09:02 +02:00
common common-stanza
build-depends: base ^>=4.13.0.0
default-extensions: OverloadedStrings
, ScopedTypeVariables
, DerivingVia
, DeriveAnyClass
, GeneralizedNewtypeDeriving
, DeriveFunctor
, DeriveTraversable
, DeriveFoldable
, StandaloneDeriving
, DerivingStrategies
, DeriveGeneric
default-language: Haskell2010
ghc-options: -Wall -threaded
2020-12-30 18:35:47 +02:00
library
2020-12-30 22:09:02 +02:00
import: common-stanza
2020-12-30 18:35:47 +02:00
exposed-modules: MyLib
2020-12-30 22:09:02 +02:00
, Database.Migrations
2020-12-30 23:29:56 +02:00
, Control.Monad.Buuka
, Operations.Insert
, Operations
, Data.Environment
, Data.Buuka
2020-12-30 18:35:47 +02:00
-- other-modules:
2020-12-30 22:09:02 +02:00
build-depends: aeson
2020-12-30 18:35:47 +02:00
, yaml
, mtl
, transformers
2020-12-30 23:29:56 +02:00
, unliftio
2020-12-30 18:35:47 +02:00
, conduit
, conduit-extra
2020-12-30 23:29:56 +02:00
, containers
, exceptions
, bytestring
, filepath
2020-12-30 18:35:47 +02:00
hs-source-dirs: src
executable buuka
2020-12-30 22:09:02 +02:00
import: common-stanza
2020-12-30 18:35:47 +02:00
main-is: Main.hs
-- other-modules:
-- other-extensions:
2020-12-30 22:09:02 +02:00
build-depends: buuka
2020-12-30 18:35:47 +02:00
, optparse-applicative
hs-source-dirs: app
test-suite buuka-test
2020-12-30 22:09:02 +02:00
import: common-stanza
other-modules: Test.Database.Migrations
2020-12-30 18:35:47 +02:00
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
2020-12-30 22:09:02 +02:00
build-depends: buuka
2020-12-30 18:35:47 +02:00
, hedgehog
2020-12-30 22:09:02 +02:00
, hedgehog-corpus
2020-12-30 18:35:47 +02:00
, tasty-hedgehog
, tasty
2020-12-30 22:09:02 +02:00
, text
, aeson