-
Notifications
You must be signed in to change notification settings - Fork 2
/
refinery.cabal
70 lines (65 loc) · 1.64 KB
/
refinery.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack
name: refinery
version: 0.4.0.0
synopsis: Toolkit for building proof automation systems
description: Please see the README on GitHub at <https://github.com/githubuser/refinery#readme>
category: Language
homepage: https://github.com/totbwf/refinery#readme
bug-reports: https://github.com/totbwf/refinery/issues
author: Reed Mullanix
maintainer: [email protected]
copyright: 2019 Reed Mullanix
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with:
GHC ==8.6.5
, GHC ==8.8.3
, GHC ==8.10.4
, GHC ==9.6.1
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/totbwf/refinery
library
exposed-modules:
Refinery.ProofState
Refinery.Tactic
Refinery.Tactic.Internal
other-modules:
Paths_refinery
hs-source-dirs:
src
ghc-options: -Wall -Wredundant-constraints
build-depends:
base >=4.7 && <5
, exceptions >=0.10
, mmorph >=1
, mtl >=2
default-language: Haskell2010
test-suite refinery-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Checkers
Spec.PropertyTests
Spec.STLC
Paths_refinery
hs-source-dirs:
test
ghc-options: -Wall -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck
, base >=4.7 && <5
, checkers
, exceptions >=0.10
, hspec
, mmorph >=1
, mtl >=2
, refinery
default-language: Haskell2010