-
Notifications
You must be signed in to change notification settings - Fork 0
/
order-maintenance.cabal
85 lines (68 loc) · 2.87 KB
/
order-maintenance.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Name: order-maintenance
Version: 0.2.1.0
Cabal-Version: >= 1.16
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: © 2014–2015 Denis Firsov; © 2014–2017 Wolfgang Jeltsch
Author: Wolfgang Jeltsch
Maintainer: [email protected]
Stability: provisional
Homepage: https://hackage.haskell.org/package/order-maintenance
Package-URL: https://hackage.haskell.org/package/order-maintenance-0.2.1.0/order-maintenance-0.2.1.0.tar.gz
Synopsis: Algorithms for the order maintenance problem with a safe, yet
flexible interface
Description: This package is about order maintenance.
Category: Data
Tested-With: GHC == 8.0.1
Source-Repository head
Type: darcs
Location: http://hub.darcs.net/jeltsch/order-maintenance
Source-Repository this
Type: darcs
Location: http://hub.darcs.net/jeltsch/order-maintenance
Tag: order-maintenance-0.2.1.0
Library
Build-Depends: base >= 4.8 && < 5,
containers >= 0.5 && < 0.6,
transformers >= 0.3 && < 0.6
Default-Language: Haskell2010
Default-Extensions: ExistentialQuantification
GeneralizedNewtypeDeriving
KindSignatures
RankNTypes
TupleSections
Exposed-Modules: Control.Monad.Trans.Order
Control.Monad.Trans.Order.Lazy
Control.Monad.Trans.Order.Strict
Data.Order.Pair
Data.Order.Element
Data.Order.Element.IO
Data.Order.Algorithm
Data.Order.Algorithm.Raw
System.IO.Order
Other-Modules: Control.Monad.Trans.Order.Lazy.Type
Control.Monad.Trans.Order.Representation
Data.Order.Pair.Type
Data.Order.Element.Type
Data.Order.Element.IO.Type
Data.Order.Representation
Data.Order.Element.Representation
Data.Order.Gate
Data.Order.Algorithm.Type
Data.Order.Algorithm.Raw.Default
Data.Order.Algorithm.Raw.Dumb
Data.Order.Algorithm.Raw.DietzSleatorAmortizedLog
HS-Source-Dirs: src/library
Test-Suite tests
Type: detailed-0.9
Build-Depends: base >= 3.0 && < 5,
Cabal >= 1.16 && < 2,
cabal-test-quickcheck >= 0.1 && < 0.2,
containers >= 0.5 && < 0.6,
QuickCheck >= 2.6 && < 3,
transformers >= 0.3 && < 0.6,
order-maintenance == 0.2.1.0
Default-Language: Haskell2010
Test-Module: TestSuite
HS-Source-Dirs: src/test-suites