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