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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
Name: safecopy
Version: 0.10.4.2
x-revision: 7
Synopsis: Binary serialization with version control.
Description: An extension to Data.Serialize with built-in version control.
Homepage: https://github.com/acid-state/safecopy
License: PublicDomain
Author: David Himmelstrup, Felipe Lessa
Maintainer: Lemmih <lemmih@gmail.com>, David Fox <dsf@seereason.com>
-- Copyright:
Category: Data, Parsing
Build-type: Simple
Extra-source-files: CHANGELOG.md
Cabal-version: >=1.10
tested-with:
GHC == 9.8.0
GHC == 9.6.2
GHC == 9.4.7
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
Source-repository head
type: git
location: https://github.com/acid-state/safecopy.git
Library
Default-language: Haskell2010
-- Modules exported by the library.
Exposed-modules: Data.SafeCopy
Data.SafeCopy.Internal
Hs-Source-Dirs: src/
-- Packages needed in order to build this package.
Build-depends: base >= 4.9 && < 5,
array < 0.6,
cereal >= 0.5 && < 0.6,
bytestring < 0.13,
generic-data >= 0.3,
containers >= 0.3 && < 0.7,
old-time < 1.2,
template-haskell < 2.21,
text < 1.3 || >= 2.0 && < 2.2,
time < 1.13,
transformers < 0.7,
vector >= 0.10 && < 0.14
-- Modules not exported by this package.
Other-modules: Data.SafeCopy.Instances, Data.SafeCopy.SafeCopy,
Data.SafeCopy.Derive
GHC-Options: -Wall
cpp-options: -DDEFAULT_SIGNATURES -DSAFE_HASKELL
Test-suite instances
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Main-is: instances.hs
Hs-Source-Dirs: test/
GHC-Options: -Wall -threaded -rtsopts -with-rtsopts=-N
Build-depends: base, cereal, template-haskell, safecopy,
containers, time, array, vector, lens >= 4.7 && < 5.3,
lens-action, tasty, tasty-quickcheck, quickcheck-instances, QuickCheck
Test-suite generic
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Main-is: generic.hs
Hs-Source-Dirs: test/
GHC-Options: -Wall -threaded -rtsopts -with-rtsopts=-N
Build-depends: base, bytestring, cereal, safecopy, HUnit
|