-
Notifications
You must be signed in to change notification settings - Fork 3
/
brassica.cabal
154 lines (138 loc) · 5.15 KB
/
brassica.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
cabal-version: 2.0
name: brassica
version: 1.0.0
synopsis: Featureful sound change applier
description:
This is the Brassica library for the simulation of sound changes in historical linguistics and language construction.
.
For an introduction to library usage, see the documentation of [Brassica.SoundChange](https://hackage.haskell.org/package/brassica-1.0.0/candidate/docs/Brassica-SoundChange.html).
.
For further details on Brassica’s design and usage, please refer to the README below or at <https://github.com/bradrn/brassica/blob/v1.0.0#readme>.
category: Linguistics
homepage: https://github.com/bradrn/brassica#readme
bug-reports: https://github.com/bradrn/brassica/issues
author: Brad Neimann
maintainer: Brad Neimann
copyright: 2020-2022 Brad Neimann
license: BSD3
license-file: LICENSE
build-type: Simple
extra-doc-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/bradrn/brassica
library
exposed-modules: Brassica.SoundChange
, Brassica.SoundChange.Apply
, Brassica.SoundChange.Apply.Internal
, Brassica.SoundChange.Apply.Internal.MultiZipper
, Brassica.SoundChange.Expand
, Brassica.SoundChange.Frontend.Internal
, Brassica.SoundChange.Parse
, Brassica.SoundChange.Tokenise
, Brassica.SoundChange.Types
, Brassica.SFM.MDF
, Brassica.SFM.SFM
, Brassica.Paradigm
other-modules: Brassica.Paradigm.Apply
, Brassica.Paradigm.Parse
, Brassica.Paradigm.Types
hs-source-dirs: src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, containers >=0.6 && <0.7
, deepseq >=1.4 && <1.6
, fast-myers-diff ==0.0.0
, megaparsec >=8.0 && <9.7
, mtl >=2.2 && <2.4
, parser-combinators >=1.2 && <1.3
, split >=0.2 && <0.3
, transformers >=0.5 && <0.7
, vector >=0.13 && <0.14
default-language: Haskell2010
executable brassica
main-is: Main.hs
other-modules: Server
hs-source-dirs: cli
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, brassica
, aeson >=2.2 && <2.3
, attoparsec-aeson ^>=2.2
, bytestring >=0.10 && <0.13
, conduit ^>=1.3
, conduit-extra ^>=1.3
, deepseq >=1.4 && <1.6
, optparse-applicative ^>=0.17.1 || ^>=0.18
, parallel ^>= 3.2
, text >=1.2 && <2.3
default-language: Haskell2010
executable brassica-pb
main-is: Main.hs
hs-source-dirs: cli-pb
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, brassica
, bytestring >=0.10 && <0.13
, conduit ^>=1.3
, optparse-applicative ^>=0.17.1 || ^>=0.18
, text >=1.2 && <2.3
default-language: Haskell2010
benchmark changes-bench
type: exitcode-stdio-1.0
main-is: Changes.hs
hs-source-dirs: bench
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, brassica
, criterion >=1.5 && <1.7
, file-embed >=0.0.15 && <0.0.16
, parallel ^>= 3.2
, text >=1.2 && <2.3
default-language: Haskell2010
benchmark paradigm-bench
type: exitcode-stdio-1.0
main-is: Paradigm.hs
hs-source-dirs: bench
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, brassica
, criterion >=1.5 && <1.7
default-language: Haskell2010
test-suite changes-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, brassica
, tasty ^>=1.4
, tasty-golden ^>=2.3
, bytestring
, text >=1.2 && <2.3
, transformers >=0.5 && <0.7
, conduit ^>=1.3
, utf8-string ^>=1.0
default-language: Haskell2010
test-suite doctests
type: exitcode-stdio-1.0
main-is: DocTests.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, brassica
, tasty ^>=1.4
, bytestring
, text >=1.2 && <2.3
, pandoc >=3.3 && <3.4
, pandoc-types >=1.23 && <1.24
default-language: Haskell2010