-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatex.cabal
47 lines (34 loc) · 1.4 KB
/
chatex.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: chatex
-- +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
synopsis: Web chat with LaTeX-style math typesetting.
description: Web chat with LaTeX-style math typesetting.
license: GPL-3
license-file: LICENSE
author: Sebastian Conybeare
homepage: https://github.com/sebmathguy/chatex
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
executable chatex
main-is: Main.hs
default-extensions: BangPatterns
, OverloadedStrings
, TupleSections
build-depends: base >=4.6 && <4.9
, containers >=0.5 && <0.6
, text >=1.2 && <1.3
, stm >=2.4 && <2.5
, scotty >=0.9 && <0.10
, transformers >=0.2 && <0.5
, aeson >=0.8 && <0.9
hs-source-dirs: src
ghc-options: -Wall -threaded -eventlog -rtsopts
ghc-prof-options: -auto-all -prof
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/sebmathguy/chatex.git