1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-27 10:10:50 +03:00
guide/guide.cabal

91 lines
2.9 KiB
Plaintext
Raw Normal View History

name: guide
2016-02-02 12:35:39 +03:00
version: 0.1.0.0
synopsis: A site for comparing Haskell libraries
description:
A site for comparing Haskell libraries
homepage: http://github.com/aelve/guide
bug-reports: http://github.com/aelve/guide/issues
2016-02-02 12:35:39 +03:00
license: BSD3
license-file: LICENSE
author: Artyom
maintainer: yom@artyom.me
-- copyright:
category: Web
tested-with: GHC == 7.10.3
build-type: Simple
extra-source-files:
CHANGELOG.md
data-files:
static/*.svg
2016-03-09 02:21:22 +03:00
static/*.css
static/*.md
static/*.html
2016-02-02 12:35:39 +03:00
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/aelve/guide.git
2016-02-02 12:35:39 +03:00
executable guide
2016-02-02 12:35:39 +03:00
main-is: Main.hs
2016-03-11 16:07:22 +03:00
other-modules:
Config
2016-03-11 16:07:22 +03:00
Types
2016-02-24 19:32:12 +03:00
Utils
2016-05-01 16:28:10 +03:00
Cache
2016-03-11 14:58:11 +03:00
Markdown
2016-02-24 19:32:12 +03:00
JS
2016-03-15 15:35:35 +03:00
View
2016-02-02 12:35:39 +03:00
-- other-extensions:
build-depends: MonadRandom == 0.4.*
, Spock
, Spock-lucid == 0.2.*
2016-03-04 18:19:11 +03:00
, acid-state == 0.14.*
, aeson == 0.11.*
, aeson-pretty == 0.7.*
, base >=4.8 && <4.9
, base-prelude
, blaze-builder
, bytestring
, cheapskate
, cheapskate-highlight == 0.1.*
2016-03-15 14:20:06 +03:00
, cheapskate-lucid == 0.1.*
2016-03-04 12:35:36 +03:00
, containers >= 0.5
, data-default >= 0.5
2016-05-02 17:49:46 +03:00
, deepseq >= 1.2.0.0
, directory >= 1.2
2016-03-14 21:51:34 +03:00
, ekg
, ekg-core
2016-03-19 21:36:21 +03:00
, feed >= 0.3.11 && < 0.4
, filepath
2016-04-07 22:14:08 +03:00
, friendly-time == 0.4.*
2016-05-01 16:28:10 +03:00
, hashable
2016-03-23 01:53:38 +03:00
, http-types
, iproute == 1.7.*
, lucid >= 2.9.5 && < 3
2016-05-21 16:55:56 +03:00
, megaparsec == 4.4.*
, microlens-platform >= 0.2.3
, mmorph == 1.*
2016-04-03 23:57:01 +03:00
, mtl >= 2.1.1
2016-02-19 22:12:23 +03:00
, neat-interpolation == 0.3.*
2016-04-03 23:57:01 +03:00
, network
2016-02-20 12:52:55 +03:00
, path-pieces
2016-02-20 01:01:14 +03:00
, random >= 1.1
2016-03-04 18:19:11 +03:00
, safecopy
, shortcut-links >= 0.4.2
2016-05-01 16:28:10 +03:00
, stm-containers == 0.2.10.*
, template-haskell
, text
, text-format
, time >= 1.5
, transformers
2016-04-03 23:57:01 +03:00
, wai
2016-03-14 21:51:34 +03:00
, wai-middleware-metrics
, wai-middleware-static
2016-03-19 21:36:21 +03:00
, xml
2016-02-20 18:28:55 +03:00
, xss-sanitize
ghc-options: -Wall -fno-warn-unused-do-bind
2016-03-16 02:26:42 +03:00
-threaded "-with-rtsopts=-T -N"
2016-02-02 12:35:39 +03:00
hs-source-dirs: src
default-language: Haskell2010