2017-06-03 01:14:04 +03:00
|
|
|
name: index-project
|
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
homepage: https://github.com/githubuser/index-project#readme
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Boris Yartsev
|
|
|
|
maintainer: borboss@gmail.com
|
|
|
|
copyright: Boris Yartsev
|
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: README.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
2017-06-09 21:31:12 +03:00
|
|
|
other-modules: Common, FileUtils, HttpDownload, HackageUpdate, HackageArchive, REPL, Storage, Stackage
|
2017-06-09 16:08:33 +03:00
|
|
|
exposed-modules: IndexProject
|
2017-06-03 01:14:04 +03:00
|
|
|
build-depends: base >= 4.7 && < 5
|
|
|
|
, directory
|
|
|
|
, containers
|
|
|
|
, tar
|
|
|
|
, split
|
|
|
|
, http-types
|
|
|
|
, bytestring
|
2017-06-04 04:18:10 +03:00
|
|
|
, Cabal
|
2017-06-03 01:14:04 +03:00
|
|
|
, http-client
|
|
|
|
, filepath
|
|
|
|
, http-client-tls
|
2017-06-04 04:18:10 +03:00
|
|
|
, utf8-string
|
2017-06-03 01:14:04 +03:00
|
|
|
, pureMD5
|
|
|
|
, aeson
|
2017-06-09 16:08:33 +03:00
|
|
|
, data-default
|
2017-06-03 01:14:04 +03:00
|
|
|
, text
|
2017-06-06 01:26:16 +03:00
|
|
|
, mtl
|
|
|
|
, safecopy
|
2017-06-03 01:14:04 +03:00
|
|
|
, cereal
|
|
|
|
, unix
|
|
|
|
, exceptions
|
|
|
|
, transformers
|
|
|
|
, zlib
|
2017-06-06 01:26:16 +03:00
|
|
|
, acid-state
|
2017-06-03 01:14:04 +03:00
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable index-project-exe
|
|
|
|
hs-source-dirs: app
|
|
|
|
main-is: Main.hs
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
|
|
build-depends: base
|
|
|
|
, index-project
|
|
|
|
, containers
|
|
|
|
, tar
|
|
|
|
, bytestring
|
|
|
|
, http-client
|
|
|
|
, directory
|
2017-06-09 16:08:33 +03:00
|
|
|
, data-default
|
2017-06-03 01:14:04 +03:00
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite index-project-test
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Spec.hs
|
|
|
|
build-depends: base
|
|
|
|
, index-project
|
2017-06-04 16:32:07 +03:00
|
|
|
, tasty
|
|
|
|
, tasty-hunit
|
2017-06-03 01:14:04 +03:00
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/githubuser/index-project
|