]> git.rkrishnan.org Git - hs-rsync.git/blob - hs-rsync.cabal
remove the older versions of checksum and checksumupdate
[hs-rsync.git] / hs-rsync.cabal
1 name:                hs-rsync
2 version:             0.1.0.0
3 synopsis:            An rsync implementation pure Haskell
4 description:         RSync in pure Haskell
5 homepage:            http://github.com/vu3rdd/hs-rsync#readme
6 license:             GPL-3
7 license-file:        LICENSE
8 author:              Ramakrishnan Muthukrishnan
9 maintainer:          ram@rkrishnan.org
10 copyright:           2015 Ramakrishnan Muthukrishnan
11 category:            Console
12 build-type:          Simple
13 -- extra-source-files:
14 cabal-version:       >=1.10
15
16 library
17   hs-source-dirs:      src
18   exposed-modules:     Lib
19   build-depends:       base >= 4.7 && < 5
20                      , bytestring
21                      , containers
22                      , cryptohash
23                      , digest
24                      , mtl
25   default-language:    Haskell2010
26
27 executable hs-rsync-exe
28   hs-source-dirs:      app
29   main-is:             Main.hs
30   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
31   build-depends:       base
32                      , bytestring
33                      , hs-rsync
34   default-language:    Haskell2010
35
36 test-suite hs-rsync-test
37   type:                exitcode-stdio-1.0
38   hs-source-dirs:      test
39   main-is:             Spec.hs
40   build-depends:       base
41                      , hs-rsync
42   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
43   default-language:    Haskell2010
44
45 source-repository head
46   type:     git
47   location: https://github.com/vu3rdd/hs-rsync