-
Notifications
You must be signed in to change notification settings - Fork 0
/
sr-order.cabal
60 lines (57 loc) · 1.95 KB
/
sr-order.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
name: sr-order
version: 1.13
cabal-version: >= 1.10
build-type: Simple
license: BSD3
maintainer: David Fox <dsf@seereason.com>
homepage: https://github.com/seereason/th-path
bug-reports: https://github.com/seereason/th-path/issues
stability: experimental
synopsis: A data structure to support lists in collaborative software
description:
A data structure that combines a 'Map' @k@ @v@ with a list of
@k@, representing the element order. This means the @[k]@ can be
reordered without invalidating any @k@ values that might be in use.
This is useful for collaborative systems where one person might
reorder a list while another person is modifying one of its
elements.
library
default-language: Haskell2010
Default-Extensions: ConstraintKinds, CPP, DataKinds, DeriveDataTypeable, DeriveFunctor, DeriveGeneric
Default-Extensions: FlexibleInstances, FlexibleContexts, InstanceSigs, LambdaCase, MultiParamTypeClasses
Default-Extensions: OverloadedStrings, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving
Default-Extensions: TupleSections, TypeApplications, TypeFamilies, TypeOperators
hs-source-dirs: src
ghc-options: -Wall -O
build-depends:
assoc-listlike,
base >= 4.8 && < 5,
cereal,
containers,
data-default,
extra,
generic-lens,
lens,
ListLike,
mtl,
pretty,
QuickCheck,
safecopy,
sr-utils >= 1.77,
vector
exposed-modules:
Data.Order
Data.Order.Classes.One
Data.Order.Classes.Ordered
Data.Order.Instances.MapAndVector
Data.Order.Types.AssocList
test-suite order-tests
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -Wall -O
hs-source-dirs: tests
main-is: Main.hs
build-depends: base, containers, extra, HUnit, lens, mtl, QuickCheck, sr-order
source-repository head
type: git
location: git://github.com/seereason/sr-order.git