-
Notifications
You must be signed in to change notification settings - Fork 123
/
tttool.cabal
84 lines (80 loc) · 2.76 KB
/
tttool.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
cabal-version: 2.0
name: tttool
version: 1.11
synopsis: Working with files for the Tiptoi® pen
description: The Ravensburger Tiptoi® pen is programmed via special
files. Their file format has been reverse engineered; this
is a tool to analyse and create such files.
.
For more user-facing documentation, see
<http://tttool.entropia.de/> (in German).
category: Reverse Engineering
homepage: https://github.com/entropia/tip-toi-reveng
license: MIT
license-file: LICENSE
author: Joachim Breitner
maintainer: [email protected]
copyright: 2013-2019 Joachim Breitner
build-type: Simple
extra-source-files: README.md Changelog.md
executable tttool
main-is: tttool.hs
other-modules: Commands
other-modules: Constants
other-modules: Cypher
other-modules: GMEParser
other-modules: GMERun
other-modules: GMEWriter
other-modules: KnownCodes
other-modules: Language
other-modules: Lint
other-modules: OidCode
other-modules: OidTable
other-modules: OidTableSVG
other-modules: OneLineParser
other-modules: Paths_tttool
other-modules: PlaySound
other-modules: PrettyPrint
other-modules: RangeParser
other-modules: TextToSpeech
other-modules: TipToiYaml
other-modules: TipToiYamlAux
other-modules: Types
other-modules: Utils
build-depends: aeson ^>= 2.1.1
build-depends: base ^>= 4.16
build-depends: base64-bytestring ^>= 1.2.1.0
build-depends: binary >= 0.5 && < 0.9
build-depends: blaze-svg == 0.3.*
build-depends: bytestring ^>= 0.11.3
build-depends: containers >= 0.4 && <0.7
build-depends: directory >= 1.2 && < 1.4
build-depends: executable-path == 0.0.*
build-depends: filepath >= 1.3
build-depends: hashable >= 1.3
build-depends: haskeline == 0.8.*
build-depends: HPDF >= 1.4.10 && < 1.5
build-depends: JuicyPixels >= 3.2.5 && < 3.4
build-depends: mtl == 2.2.*
build-depends: natural-sort >= 0.1 && < 0.2
build-depends: optparse-applicative >= 0.13 && < 0.17
build-depends: parsec == 3.1.*
build-depends: process >= 1.1 && < 1.7
build-depends: random >= 1.0 && < 1.2
build-depends: split == 0.2.*
build-depends: spool == 0.1.*
build-depends: text == 1.2.*
build-depends: time >= 1.5 && < 1.12
build-depends: vector >= 0.10 && < 0.13
build-depends: yaml >= 0.8 && < 0.12
build-depends: zlib >= 0.5 && < 0.7
hs-source-dirs: src
default-language: GHC2021
ghc-options:
-fwarn-unused-imports
-fwarn-incomplete-patterns
-rtsopts
-with-rtsopts=-K100M
source-repository head
type: git
location: https://github.com/entropia/tip-toi-reveng