summaryrefslogtreecommitdiff
path: root/primitive-structs.cabal
blob: c866f4be9428e53d24130ca6b5a05d890df53860 (plain)
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
cabal-version:       >=1.10

name:                primitive-structs

-- The package version.  See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- https://pvp.haskell.org
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.0

synopsis:            Mutable structs based on the primitive package ByteArray interface.

-- description:
-- A URL where users can report bugs.
-- bug-reports:

license:             BSD3
license-file:        LICENSE
author:              Joe Crayne
maintainer:          joe@jerkface.net
-- copyright:
category:            Data
build-type:          Simple

extra-source-files:  CHANGELOG.md


library
  exposed-modules:     Data.Primitive.Struct, Data.Primitive.ByteArray.Util, Text.XXD
  -- other-modules:
  other-extensions:    AllowAmbiguousTypes
        , CPP
        , DataKinds
        , FlexibleContexts
        , FlexibleInstances
        , MultiParamTypeClasses
        , ScopedTypeVariables
        , TypeApplications
        , TypeFamilies
        , TypeOperators
        , KindSignatures
        , MagicHash
        , RankNTypes
  build-depends:       base
        , primitive
        , tagged
        , bytestring
        , memory
  hs-source-dirs:      src
  default-language:    Haskell2010