-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcereal-vector.cabal
40 lines (36 loc) · 1.09 KB
/
cereal-vector.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
name: cereal-vector
version: 0.2.0.1
synopsis: Serialize instances for Data.Vector types.
homepage: https://github.com/acfoltzer/cereal-vector
bug-reports: https://github.com/acfoltzer/cereal-vector/issues
license: BSD3
license-file: LICENSE
author: Adam C. Foltzer
maintainer: [email protected]
category: Data
build-type: Simple
stability: experimental
cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/acfoltzer/cereal-vector.git
library
exposed-modules: Data.Vector.Serialize,
Data.Vector.Storable.UnsafeSerialize
build-depends: base == 4.*
, vector >= 0.9
, cereal >= 0.3
, bytestring >= 0.9
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
other-modules:
ghc-options:
-Wall -O2
build-depends:
base,
vector,
cereal,
cereal-vector,
QuickCheck