-
Notifications
You must be signed in to change notification settings - Fork 3
/
ot.cabal
52 lines (46 loc) · 2.21 KB
/
ot.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
Name: ot
Version: 0.2.1.0
Synopsis: Real-time collaborative editing with Operational Transformation
Description: OT is a technique to handle changes to a document in a setting where users are editing concurrently. This package implements operational transformation for simple plain text documents as well as server and client modules.
Homepage: https://github.com/operational-transformation/ot.hs
License: MIT
License-file: LICENSE
Author: Tim Baumann
Maintainer: [email protected]
Category: Text
Build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
Cabal-version: >= 1.8
source-repository head
type: git
location: https://github.com/Operational-Transformation/ot.hs.git
Library
Ghc-options: -Wall
Hs-source-dirs: src
Exposed-modules: Control.OperationalTransformation, Control.OperationalTransformation.List, Control.OperationalTransformation.Text, Control.OperationalTransformation.Selection, Control.OperationalTransformation.Properties, Control.OperationalTransformation.Client, Control.OperationalTransformation.Server
Build-depends: base >= 4 && < 5,
text >= 1.0 && < 1.3,
aeson >= 0.7 && < 0.11,
attoparsec >= 0.10.1.1 && < 1,
QuickCheck >= 2.7 && < 2.9,
binary >= 0.5.1.1 && < 0.8,
either >= 4.1.2 && < 5,
mtl >= 2.1.3.1 && < 3,
ghc
-- Modules not exported by this package.
-- Other-modules:
Test-suite tests
Ghc-options: -Wall -rtsopts
Hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: Main.hs
Build-depends: ot,
QuickCheck,
HUnit,
base,
text,
aeson,
test-framework >= 0.6 && < 0.9,
test-framework-quickcheck2 >= 0.3.0 && < 0.4,
test-framework-hunit >= 0.3.0 && < 0.4,
binary >= 0.5.1.0