-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsafe-json.cabal
128 lines (123 loc) · 3.91 KB
/
safe-json.cabal
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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: safe-json
version: 1.2.0.2
synopsis: Automatic JSON format versioning
description: This library aims to make the updating of JSON formats or contents, while keeping backward compatibility, as painless as possible. The way this is achieved is through versioning and defined migration functions to migrate older (or newer) versions to the one used.
.
The library mainly consists of two classes:
.
* @SafeJSON a@: Defines the version of @a@ and if (and how) it is migratable.
.
* @Migrate a@: Defines the data type (@MigrateFrom a@) that can be migrated to @a@ and how to migrate from that type.
.
Using these two classes, JSON serialized data types will stay parsable, even after format changes.
.
For a more in-depth explanation and examples, please see the README at <https://github.com/Vlix/safe-json#readme>
category: JSON
homepage: https://github.com/Vlix/safe-json#readme
bug-reports: https://github.com/Vlix/safe-json/issues
author: Felix Paulusma
maintainer: [email protected]
copyright: 2019 Felix Paulusma
license: MIT
license-file: LICENSE
build-type: Simple
tested-with:
GHC == 9.0.2 , GHC == 9.2.8 , GHC == 9.4.8 , GHC == 9.6.6 , GHC == 9.8.3 , GHC == 9.10.1
extra-source-files:
README.md
ChangeLog.md
test/json/badsimpleversion.json
test/json/noversion.json
test/json/primitives.json
test/json/setremoveversion.json
test/json/simpleversion.json
test/json/simpleversion1.json
test/json/version0.json
test/json/version1.json
test/json/version2.json
test/json/version3.json
test/json/version4-2.json
test/json/version4.json
source-repository head
type: git
location: https://github.com/Vlix/safe-json
library
exposed-modules:
Data.Aeson.Safe
Data.SafeJSON
Data.SafeJSON.Test
other-modules:
Data.SafeJSON.Internal
Paths_safe_json
hs-source-dirs:
src
default-extensions:
OverloadedStrings
build-depends:
aeson >=1.4.1 && <2.3
, base >=4.9 && <5
, bytestring >=0.10.8.1 && <1
, containers >=0.5.7.1 && <0.9
, dlist >=0.8.0.3 && <2
, hashable >=1.2.6.1 && <1.6
, scientific >=0.3.5.2 && <0.4
, tasty >=0.11.3 && <1.6
, tasty-hunit >=0.9.2 && <0.11
, tasty-quickcheck >=0.8.4 && <0.12
, text >=1.2.3 && <2.2
, time >=1.6.0.1 && <1.15
, unordered-containers >=0.2.9 && <0.3
, uuid-types >=1.0.3 && <1.1
, vector >=0.12.0.1 && <0.14
default-language: Haskell2010
test-suite safe-json-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Consistency.Migrations
Consistency.Primitives
ConsistencyTests
Instances
MigrationTests
PrimitiveTests
SafeAeson
Types
Version
VersionNum
Paths_safe_json
hs-source-dirs:
test
default-extensions:
OverloadedStrings
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.9 && <5
, bytestring >=0.10.8.1 && <1
, containers >=0.5.7.1 && <0.9
, dlist >=0.8.0.3 && <2
, hashable >=1.2.6.1 && <1.6
, quickcheck-instances >=0.3.16 && <0.4
, safe-json
, scientific >=0.3.5.2 && <0.4
, tasty
, tasty-hunit
, tasty-quickcheck
, temporary >=1.2.1.1
, text >=1.2.3 && <2.2
, time >=1.6.0.1 && <1.15
, unordered-containers >=0.2.9 && <0.3
, uuid >=1.3.13
, uuid-types >=1.0.3 && <1.1
, vector >=0.12.0.1 && <0.14
default-language: Haskell2010
if impl(ghc >= 9.2.0)
build-depends:
aeson >=2.0.3.0 && <2.3
else
build-depends:
aeson >=1.4.1 && <2.3
, generic-arbitrary >=0.1.0 && <1.1