-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgraceful.cabal
54 lines (50 loc) · 1.85 KB
/
graceful.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- Initial graceful.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: graceful
version: 0.1.1.5
synopsis: Library to write graceful shutdown / upgrade service.
description: Library to write graceful shutdown / upgrade service.
license: BSD3
license-file: LICENSE
author: Noriyuki OHKAWA <[email protected]>
maintainer: Noriyuki OHKAWA <[email protected]>
copyright: Copyright (c) 2013, Noriyuki OHKAWA
category: System
build-type: Simple
cabal-version: >=1.8
tested-with: GHC ==7.4.1, GHC ==7.6.3, GHC ==7.8.3
extra-source-files:
sample/sample.hs
-- test target servers
test/echo.hs
test/double.hs
source-repository head
type: git
location: https://github.com/notogawa/graceful.git
library
hs-source-dirs: src
exposed-modules: System.Posix.Graceful
ghc-options: -Wall
other-modules: System.Posix.Graceful.Handler
System.Posix.Graceful.Worker
Network.Socket.Wrapper
build-depends: base >=4.5 && <4.9
, network >=2.3 && <2.7
, unix >=2.5 && <2.8
, stm >=2.3 && <2.5
, directory >=1.1 && <1.3
test-suite graceful-spec
hs-source-dirs: test
type: exitcode-stdio-1.0
ghc-options: -Wall -threaded
main-is: Spec.hs
other-modules: System.Posix.GracefulSpec
build-depends: base ==4.*
, graceful
, hspec >=1.3
, process
, network
, unix
, stm
, directory
, filepath