-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsized.cabal
More file actions
81 lines (71 loc) · 2.35 KB
/
sized.cabal
File metadata and controls
81 lines (71 loc) · 2.35 KB
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
72
73
74
75
76
77
78
79
80
81
Name: sized
Version: 0.0.0
Synopsis: Data types with fixed size
Description: Data types with fixed size
License: MIT
License-file: LICENSE
Copyright: Fedor Gogolev <knsd@knsd.net>
Author: Fedor Gogolev <knsd@knsd.net>
Maintainer: Fedor Gogolev <knsd@knsd.net>
Homepage: https://github.com/lambda-llama/sized
Bug-reports: https://github.com/lambda-llama/sized/issues
Category: Data
Stability: Alpha
Build-type: Simple
Cabal-version: >= 1.16
Tested-with: GHC == 7.6.*
Library
Hs-source-dirs: src
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Default-extensions:
ScopedTypeVariables
FlexibleInstances
UndecidableInstances
KindSignatures
DataKinds
Build-depends:
base == 4.7.*
, bytestring == 0.10.*
, deepseq == 1.3.*
Exposed-modules:
Data.Sized.ByteString
Data.Sized.Foreign
Test-suite sized-bytestring-tests
Main-is: Tests.hs
Hs-source-dirs: src, tests
Default-language: Haskell2010
Default-extensions:
ScopedTypeVariables
FlexibleInstances
UndecidableInstances
KindSignatures
DataKinds
Type: exitcode-stdio-1.0
Build-depends:
base == 4.7.*
, bytestring == 0.10.*
, deepseq == 1.3.*
, tasty == 0.8.*
, tasty-quickcheck == 0.8.*
, QuickCheck == 2.6.*
Benchmark fixed-bytestring-benchmarks-against-bytestring
Main-is: BenchmarksAgainstByteString.hs
Hs-source-dirs: src, benchmarks
Ghc-options: -O2
Default-language: Haskell2010
Default-extensions:
ScopedTypeVariables
FlexibleInstances
UndecidableInstances
KindSignatures
DataKinds
Type: exitcode-stdio-1.0
Build-depends:
base == 4.7.*
, bytestring == 0.10.*
, deepseq == 1.3.*
, criterion == 0.8.*
Source-repository head
Type: git
Location: https://github.com/lambda-llama/sized