1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-25 18:56:52 +03:00
guide/REPL/index-project.cabal

76 lines
2.3 KiB
Plaintext
Raw Normal View History

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
, Cabal
2017-06-03 01:14:04 +03:00
, http-client
, filepath
, http-client-tls
, 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
, mtl
, safecopy
2017-06-03 01:14:04 +03:00
, cereal
, unix
, exceptions
, transformers
, zlib
, 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
, 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