-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcauldron.cabal
More file actions
51 lines (49 loc) · 923 Bytes
/
cauldron.cabal
File metadata and controls
51 lines (49 loc) · 923 Bytes
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
cabal-version: 2.4
name: cauldron
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules:
Cauldron
Cauldron.Unsafe
Cauldron.Units
build-depends:
, base >=4.12 && <5
, bytebuild
, byteslice
, bytesmith
, contiguous
, json-syntax
, lz4-bytes
, natural-arithmetic
, primitive
, text-short
, wide-word
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
, base
, cauldron
, byteslice
, bytebuild
, bytesmith
, primitive
, contiguous
, json-syntax
ghc-options: -Wall -O2
default-language: Haskell2010