-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.cabal
59 lines (55 loc) · 1.41 KB
/
schema.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
name: schema
version: 0.0.4
synopsis: Encoding-independent schemas for Haskell data types.
homepage: https://toktok.github.io/
license: GPL-3
license-file: LICENSE
author: Iphigenia Df <iphydf@gmail.com>
maintainer: Iphigenia Df <iphydf@gmail.com>
copyright: Copyright (c) 2016-2021, Iphigenia Df
category: Data
stability: Experimental
cabal-version: >=1.10
build-type: Simple
description: A Haskell implementation of encoding-independent schemas.
source-repository head
type: git
location: https://github.com/TokTok/hs-schema
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Data.Schema
Data.Schema.Builder
Data.Schema.C
Data.Schema.Deinline
Data.Schema.Pretty
Data.Schema.Type
build-depends:
aeson
, base <5
, casing
, data-fix
, prettyprinter
, scientific
, split
, text
, transformers-compat
, unordered-containers
, vector
test-suite testsuite
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: testsuite.hs
other-modules: Data.Schema.PrettySpec
ghc-options: -Wall
build-tool-depends: hspec-discover:hspec-discover
build-depends:
base <5
, bytestring
, groom
, hspec
, QuickCheck
, schema