-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlanguage-avro.cabal
56 lines (49 loc) · 1.39 KB
/
language-avro.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
name: language-avro
version: 0.1.4.0
synopsis: Language definition and parser for AVRO files.
description:
Parser for the AVRO language specification, see README.md for more details.
homepage:
https://github.com/higherkindness/avro-parser-haskell#readme
license: Apache-2.0
license-file: LICENSE
author: Flavio Corpa
maintainer: flaviocorpa@gmail.com
copyright: Copyright © 2019-2022 <http://47deg.com 47 Degrees>
category: Network
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
source-repository head
type: git
location: git://github.com/higherkindness/avro-parser-haskell.git
library
exposed-modules:
Language.Avro.Parser
Language.Avro.Types
build-depends:
avro >=0.5.1
, base >=4.12 && <5
, containers
, directory
, filepath
, megaparsec
, text
, vector
hs-source-dirs: src
default-language: Haskell2010
test-suite avro-parser-haskell-test
type: exitcode-stdio-1.0
main-is: Spec.hs
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
avro >=0.5.1
, base >=4.12 && <5
, hspec
, hspec-megaparsec
, language-avro
, megaparsec
, text
, vector