-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsgf.cabal
45 lines (42 loc) · 1.67 KB
/
sgf.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
name: sgf
version: 0.1.3.3
author: Daniel Wagner [email protected]
maintainer: Toni Cebrián [email protected]
homepage: https://github.com/tonicebrian/sgf
bug-reports: https://github.com/tonicebrian/sgf/issues
synopsis: SGF (Smart Game Format) parser
description:
This is a parser for the go\/igo\/weiqi\/baduk fragment of the SGF format.
Encodings latin-1, utf-8, and ascii are supported, and the parser strives
to be robust to minor errors, especially those made by the most common SGF
editors. There are plans to support other games and pretty-printing in
future releases.
category: Data
license: BSD3
license-file: LICENSE
cabal-version: >= 1.10
build-type: Simple
library
default-language: Haskell2010
exposed-modules: Data.SGF
Data.SGF.Parse
Data.SGF.Types
other-modules: Data.SGF.Parse.Encodings
Data.SGF.Parse.Raw
Data.SGF.Parse.Util
build-depends: base >=3 && < 5,
containers >= 0.6.7 && < 0.7,
encoding >= 0.8.9 && < 0.9,
extensible-exceptions >= 0.1.1 && < 0.2,
mtl >= 2.2.2,
transformers >= 0.5.6,
time >= 1.12.2 && < 1.13,
split >= 0.2.5,
parsec >= 3.1.16 && < 3.2
source-repository head
type: git
location: https://github.com/tonicebrian/sgf
source-repository this
type: git
location: https://github.com/tonicebrian/sgf
tag: 0.1.3