-
Notifications
You must be signed in to change notification settings - Fork 0
/
showtime.cabal
44 lines (41 loc) · 1.59 KB
/
showtime.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
name: showtime
version: 0.1
synopsis: An implementation and verification of the showtime algorithm
description: An implementation and verification of the showtime algorithm.
license: BSD3
license-file: LICENSE
author: Ryan Scott
maintainer: ryan.gl.scott@gmail.com
-- copyright:
category: Parallelism
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
tested-with: GHC == 8.4.3
, GHC == 8.6.1
source-repository head
type: git
location: https://github.com/iu-parfunc/showtime
library
exposed-modules: Showtime.Lattice
Showtime.Original
Showtime.Verified.Vec
build-depends: base >= 4.10 && < 4.13
, containers >= 0.5 && < 0.7
, singletons >= 2.4 && < 2.6
, singleton-nats >= 0.4.1 && < 0.5
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Wno-unticked-promoted-constructors
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Showtime.OriginalSpec
build-depends: base >= 4.10 && < 4.13
, hspec >= 2 && < 3
, QuickCheck >= 2.10 && < 2.14
, showtime
build-tool-depends: hspec-discover:hspec-discover >= 2 && < 3
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts