-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.yaml
More file actions
101 lines (94 loc) · 2.03 KB
/
package.yaml
File metadata and controls
101 lines (94 loc) · 2.03 KB
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
name: distributors
version: 0.5.0.0
github: "morphismtech/distributors"
license: BSD-3-Clause
author: "Eitan Chatav"
maintainer: "eitan.chatav@gmail.com"
copyright: "2026 Eitan Chatav"
extra-source-files:
- README.md
extra-doc-files:
- CHANGELOG.md
category: Profunctors, Optics, Parsing
synopsis: Unifying Parsers, Printers & Grammars
description:
Distributors provides mathematically inspired abstractions
for coders to write parsers that can also be inverted to printers.
dependencies:
- base >= 4.15 && < 5
- adjunctions >= 4.4 && < 5
- bifunctors >= 5.5 && < 6
- bytestring >= 0.11 && < 1
- containers >= 0.6 && < 1
- contravariant >= 1.5 && < 2
- distributive >= 0.6 && < 1
- lens >= 5.0 && < 6
- MemoTrie >= 0.6 && < 1
- mtl >= 2.2 && < 3
- profunctors >= 5.6 && < 6
- tagged >= 0.8 && < 1
- template-haskell >= 2.17 && < 3
- text >= 2 && < 3
- th-abstraction >= 0.4 && < 1
- vector >= 0.12 && < 1
- witherable >= 0.4 && < 1
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
default-extensions:
- AllowAmbiguousTypes
- Arrows
- ConstraintKinds
- DataKinds
- DefaultSignatures
- DeriveFoldable
- DeriveFunctor
- DeriveTraversable
- DeriveGeneric
- DerivingStrategies
- DerivingVia
- EmptyCase
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- ImportQualifiedPost
- ImpredicativeTypes
- InstanceSigs
- LambdaCase
- MagicHash
- MonoLocalBinds
- QualifiedDo
- QuantifiedConstraints
- RankNTypes
- RecursiveDo
- ScopedTypeVariables
- StandaloneDeriving
- StandaloneKindSignatures
- TemplateHaskell
- TupleSections
- TypeApplications
- TypeFamilies
- TypeOperators
- UndecidableInstances
- UndecidableSuperClasses
tests:
test:
main: Main.hs
source-dirs: test
dependencies:
- distributors
- doctest >= 0.18 && < 1
- hspec >= 2.7 && < 3
- megaparsec >= 9.0 && < 10
- QuickCheck >= 2.14 && < 3