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

90 lines
2.7 KiB
Plaintext
Raw Permalink 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
other-modules: FileUtils, HttpDownload, HackageUpdate, StackageUpdate
exposed-modules: Common
, REPL
, HackageArchive, StackageArchive
, HackageCommands, StackageCommands
, AllCommands
, PackageManager
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
, yaml
2017-06-09 16:08:33 +03:00
, data-default
, megaparsec
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
, unordered-containers
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
, megaparsec
, text
, filepath
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