-
Notifications
You must be signed in to change notification settings - Fork 0
/
binder.cabal
71 lines (65 loc) · 1.85 KB
/
binder.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
cabal-version: 3.0
name: binder
version: 0.3
synopsis: Variable binding for abstract syntax tree
description:
binder is purely functional implementation of Ocaml's
<https://github.com/rlepigre/ocaml-bindlib bindlib>.
It follows the style of higher-order abstract syntax,
and offers the representation of abstract syntax tree.
license: MIT
license-file: LICENSE
author: Keito Kajitani <[email protected]>
maintainer: Keito Kajitani <[email protected]>
copyright: (c) 2023 Keito Kajitani
homepage: https://github.com/ijaketak/binder
category: Data
build-type: Simple
tested-with:
GHC == 9.2.8
, GHC == 9.4.7
, GHC == 9.6.3
extra-doc-files: CHANGELOG.md
-- extra-source-files:
source-repository head
type: git
location: https://github.com/ijaketak/binder
source-repository this
type: git
location: https://github.com/ijaketak/binder
tag: v0.3
common depends
build-depends:
containers < 0.8
, lens < 5.3
, text < 2.2
, transformers < 0.7
common warnings
ghc-options: -Wall
library
import: depends, warnings
exposed-modules:
Data.Binder
-- other-modules:
-- other-extensions:
build-depends:
base < 4.19
hs-source-dirs: src
default-language: Haskell2010
test-suite binder-test
import: depends, warnings
default-language: Haskell2010
other-modules:
Binder1Spec
, Binder2Spec
, Binder3Spec
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends:
base < 4.19
, binder
, hspec < 2.12
build-tool-depends:
hspec-discover:hspec-discover < 2.12