-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhappy-arbitrary.cabal
61 lines (57 loc) · 1.48 KB
/
happy-arbitrary.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
name: happy-arbitrary
version: 0.0.2
synopsis: Token list generator for arbitrary Happy grammars.
homepage: https://toktok.ltd/
license: GPL-3
license-file: LICENSE
author: Iphigenia Df <[email protected]>
maintainer: Iphigenia Df <[email protected]>
copyright: Copyright (c) 2024, Iphigenia Df
category: Data
stability: Experimental
cabal-version: >=1.10
build-type: Simple
description: Generates token lists for a Happy grammar for testing parsers.
source-repository head
type: git
location: https://github.com/TokTok/hs-happy-arbitrary
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-tools: alex >=0, happy >=0
exposed-modules:
Language.Happy.Arbitrary
Language.Happy.Ast
Language.Happy.Lexer
Language.Happy.Parser
Language.Happy.Tokens
build-depends:
QuickCheck
, aeson
, array
, base <5
, containers
, bytestring
, data-fix
, extra
, file-embed
, mtl
, text
, transformers-compat
test-suite testsuite
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: testsuite.hs
other-modules: Language.Happy.ArbitrarySpec
ghc-options: -Wall
build-tool-depends: hspec-discover:hspec-discover
build-depends:
base <5
, bytestring
, groom
, hspec
, QuickCheck
, happy-arbitrary
, text