1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 21:02:13 +03:00
guide/guide.cabal

159 lines
5.1 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
-- Whatever, this won't ever be installed from a .tar package anyway so I
-- won't bother updating this section every time I add a new directory.
--
-- data-files:
-- static/*.svg
-- static/*.css
-- static/*.md
-- static/*.html
-- static/*.js
-- static/*.ico
-- templates/*.widget
-- templates/utils/*.widget
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
build-depends: base
, guide
ghc-options: -Wall -fno-warn-unused-do-bind
-threaded "-with-rtsopts=-T -N"
hs-source-dirs: src
default-language: Haskell2010
library
exposed-modules:
Guide
Config
2016-03-11 16:07:22 +03:00
Types
2016-02-24 19:32:12 +03:00
Utils
2016-06-19 00:52:19 +03:00
Merge
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-07-25 19:47:49 +03:00
build-depends: Spock
2016-07-25 17:55:10 +03:00
, Spock-lucid == 0.3.*
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
, bytestring
2016-07-24 13:12:17 +03:00
, cmark == 0.5.*
, cmark-highlight == 0.2.*
, cmark-sections == 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
, exceptions
2016-03-19 21:36:21 +03:00
, feed >= 0.3.11 && < 0.4
, filemanip == 0.3.6.*
2016-03-19 21:36:21 +03:00
, filepath
2016-07-25 20:12:08 +03:00
, focus
2016-04-07 22:14:08 +03:00
, friendly-time == 0.4.*
, fsnotify == 0.2.*
2016-05-01 16:28:10 +03:00
, hashable
2016-03-23 01:53:38 +03:00
, http-types
2016-06-12 22:35:13 +03:00
, ilist
2016-06-19 00:52:19 +03:00
, iproute == 1.7.*
, lucid >= 2.9.5 && < 3
2016-07-27 16:31:55 +03:00
, megaparsec == 5.0.*
2016-07-03 23:07:09 +03:00
, microlens-platform >= 0.3.2
, 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-06-19 00:52:19 +03:00
, patches-vector
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
, semigroups
, shortcut-links >= 0.4.2
, slave-thread
2016-06-19 00:52:19 +03:00
, split
, stache-plus == 0.1.*
2016-07-25 17:55:10 +03:00
, stm-containers >= 0.2.14 && < 0.3
, template-haskell
2016-06-12 22:35:13 +03:00
, text-all == 0.3.*
, time >= 1.5
, transformers
2016-06-19 00:52:19 +03:00
, vector
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
hs-source-dirs: lib
2016-02-02 12:35:39 +03:00
default-language: Haskell2010
2016-07-21 18:57:14 +03:00
default-extensions: MultiWayIf
, ViewPatterns
, RecordWildCards
, TupleSections
, LambdaCase
, RankNTypes
, MultiParamTypeClasses
, FunctionalDependencies
, TemplateHaskell
, DeriveFunctor
, DeriveTraversable
, DeriveGeneric
test-suite tests
main-is: Main.hs
2016-08-21 14:32:52 +03:00
other-modules: WebSpec
MarkdownSpec
2016-08-21 17:45:46 +03:00
MergeSpec
Selenium
type: exitcode-stdio-1.0
2016-08-21 17:45:46 +03:00
build-depends: QuickCheck < 2.9
, base < 5
, base-prelude
2016-08-21 14:32:52 +03:00
, cmark
, cmark-sections
, containers
, directory
, exceptions
, guide
, hspec < 3
, hspec-expectations
, hspec-webdriver < 1.2
2016-08-21 14:32:52 +03:00
, lucid < 3
, microlens-platform < 0.4
2016-08-24 18:05:27 +03:00
, monad-loops < 0.5
, network-uri
2016-08-21 17:45:46 +03:00
, quickcheck-text < 0.2
, slave-thread
2016-08-21 14:32:52 +03:00
, tagsoup < 0.14
, text-all < 0.4
, transformers
, webdriver
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind