File: cereal-vector.cabal

package info (click to toggle)
haskell-cereal-vector 0.2.0.1-7
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 64 kB
  • sloc: haskell: 130; makefile: 6
file content (40 lines) | stat: -rw-r--r-- 1,116 bytes parent folder | download | duplicates (4)
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:          acfoltzer@gmail.com
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