mirror of
https://github.com/aelve/guide.git
synced 2024-11-25 18:56:52 +03:00
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
|
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
|
||
|
exposed-modules: ArchiveUpdate, TarUtil, REPL
|
||
|
build-depends: base >= 4.7 && < 5
|
||
|
, directory
|
||
|
, containers
|
||
|
, tar
|
||
|
, split
|
||
|
, http-types
|
||
|
, bytestring
|
||
|
, http-client
|
||
|
, filepath
|
||
|
, http-client-tls
|
||
|
, pureMD5
|
||
|
, aeson
|
||
|
, text
|
||
|
, cereal
|
||
|
, unix
|
||
|
, exceptions
|
||
|
, transformers
|
||
|
, zlib
|
||
|
|
||
|
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
|
||
|
|
||
|
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
|
||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
source-repository head
|
||
|
type: git
|
||
|
location: https://github.com/githubuser/index-project
|