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
|
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: store-core
version: 0.4.4.7
synopsis: Fast and lightweight binary serialization
category: Serialization, Data
homepage: https://github.com/fpco/store#readme
bug-reports: https://github.com/fpco/store/issues
maintainer: Michael Sloan <mgsloan@gmail.com>
copyright: 2016 FP Complete
license: MIT
license-file: LICENSE
build-type: Simple
tested-with:
GHC==9.4.5
, GHC==9.2.8
, GHC==9.0.2
, GHC==8.10.7
, GHC==8.8.4
, GHC==8.6.5
, GHC==8.4.4
extra-source-files:
ChangeLog.md
source-repository head
type: git
location: https://github.com/fpco/store
flag force-alignment
manual: True
default: False
library
exposed-modules:
Data.Store.Core
other-modules:
Paths_store_core
hs-source-dirs:
src
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -O2
build-depends:
base >=4.7 && <5
, bytestring >=0.10.4.0 && <1.0
, ghc-prim >=0.3.1.0 && <1.0
, primitive >=0.6 && <1.0
, text >=1.2.0.4 && <1.3 || >=2.0 && <2.2
, transformers >=0.3.0.0 && <1.0
default-language: Haskell2010
if flag(force-alignment) || arch(PPC) || arch(PPC64) || arch(Mips) || arch(Sparc) || arch(Arm)
cpp-options: -DALIGNED_MEMORY
if impl(ghc < 8.0)
build-depends:
fail >=4.9
|