1
1
mirror of https://github.com/srid/ema.git synced 2024-11-26 06:03:50 +03:00
ema/ema.cabal

135 lines
2.6 KiB
Plaintext
Raw Normal View History

2021-04-19 18:07:52 +03:00
cabal-version: 2.4
name: ema
version: 0.1.0.0
license: AGPL-3.0-only
copyright: 2020 Sridhar Ratnakumar
maintainer: srid@srid.ca
author: Sridhar Ratnakumar
category: Web
flag with-examples
description: Include examples and their dependencies
2021-04-21 00:09:37 +03:00
default: True
flag with-helpers
description: Include helper modules based on blaze-html
default: True
2021-04-19 18:07:52 +03:00
-- 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:
CHANGELOG.md
LICENSE
2021-04-19 18:36:51 +03:00
README.md
2021-04-19 18:07:52 +03:00
library
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
, aeson
, async
, base ^>=4.14.1.0
2021-04-19 18:07:52 +03:00
, containers
, data-default
2021-04-23 00:08:57 +03:00
, directory
2021-04-19 18:07:52 +03:00
, filepath
, http-types
, monad-logger
, monad-logger-extras
2021-04-19 18:07:52 +03:00
, neat-interpolation
, optparse-applicative
2021-04-19 18:07:52 +03:00
, relude
, safe-exceptions
2021-04-19 18:07:52 +03:00
, stm
, text
, unliftio
2021-04-19 18:07:52 +03:00
, wai
, wai-middleware-static
2021-04-19 18:07:52 +03:00
, wai-websockets
, warp
, websockets
2021-04-21 00:09:37 +03:00
if (flag(with-helpers) || flag(with-examples))
build-depends:
, blaze-html
, blaze-markup
, filepattern
, fsnotify
if flag(with-examples)
build-depends:
, commonmark
, commonmark-extensions
, commonmark-pandoc
, pandoc-types
2021-04-24 20:10:31 +03:00
, profunctors
, shower
, tagged
, time
2021-04-19 18:07:52 +03:00
mixins:
base hiding (Prelude),
relude (Relude as Prelude, Relude.Container.One),
relude
ghc-options:
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
default-extensions:
FlexibleContexts
FlexibleInstances
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
OverloadedStrings
ScopedTypeVariables
TupleSections
ViewPatterns
2021-04-21 01:14:13 +03:00
exposed-modules:
2021-04-21 00:09:37 +03:00
Data.LVar
Ema
Ema.CLI
if (flag(with-helpers) || flag(with-examples))
exposed-modules:
Ema.Helper.FileSystem
Ema.Helper.Tailwind
2021-04-21 01:14:13 +03:00
other-modules:
Ema.App
Ema.Class
Ema.Generate
Ema.Route
2021-04-19 22:34:10 +03:00
Ema.Route.Slug
Ema.Route.UrlStrategy
2021-04-20 01:23:46 +03:00
Ema.Server
2021-04-21 00:09:37 +03:00
if flag(with-examples)
2021-04-24 19:04:16 +03:00
exposed-modules:
Ema.Example.Ex01_HelloWorld
Ema.Example.Ex02_Clock
Ema.Example.Ex03_Documentation
2021-04-19 18:07:52 +03:00
hs-source-dirs: src
default-language: Haskell2010
2021-04-24 19:04:16 +03:00
executable ema-docs
2021-04-24 20:10:31 +03:00
hs-source-dirs: docs
default-language: Haskell2010
main-is: Main.hs
2021-04-24 19:04:16 +03:00
build-depends:
, base
2021-04-24 20:10:31 +03:00
, ema