-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomptime.cabal
42 lines (38 loc) · 1.4 KB
/
comptime.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
cabal-version: 3.0
name: comptime
version: 0.1.0.0
synopsis: A project demonstrating compile-time execution in Haskell
description: This project implements compile-time execution of Haskell expressions using Template Haskell.
homepage: https://github.com/qxrein/comptime
license: MIT
license-file: LICENSE
author: qxrein
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: MyLib
other-modules: CompileTime
build-depends: base >= 4.14 && < 5.0,
template-haskell >= 2.18 && < 2.20
default-language: Haskell2010
test-suite comptime-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >= 4.14 && < 5.0,
template-haskell >= 2.18 && < 2.20,
comptime
default-language: Haskell2010
executable comptime-exe
main-is: Main.hs
hs-source-dirs: test
build-depends: base, comptime
default-language: Haskell2010
benchmark comptime-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs: bench
build-depends: base, comptime, criterion
default-language: Haskell2010