Skip to content

Commit

Permalink
Update from Hackage at 2019-10-03T22:36:59Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Oct 3, 2019
1 parent 73bb79c commit 7ab3edb
Show file tree
Hide file tree
Showing 2 changed files with 252 additions and 0 deletions.
251 changes: 251 additions & 0 deletions avro/0.4.5.3/avro.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,251 @@
cabal-version: 2.2

name: avro
version: 0.4.5.3
synopsis: Avro serialization support for Haskell
description: Avro serialization and deserialization support for Haskell
category: Data
homepage: https://github.com/haskell-works/avro#readme
bug-reports: https://github.com/haskell-works/avro/issues
author: Thomas M. DuBuisson
maintainer: Alexey Raga <alexey.raga@gmail.com>
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
test/data/enums.avsc
test/data/internal-bindings.avsc
test/data/karma.avsc
test/data/logical.avsc
test/data/maybe.avsc
test/data/record.avsc
test/data/reused.avsc
test/data/small.avsc
test/data/unions-no-namespace.avsc
test/data/unions.avsc
test/data/enums-object.json
test/data/namespace-inference.json
test/data/null-namespace.json
test/data/unions-object-a.json
test/data/unions-object-b.json
test/data/overlay/composite.avsc
test/data/overlay/expectation.avsc
test/data/overlay/primitives.avsc
test/data/fixed-types.avsc

source-repository head
type: git
location: https://github.com/haskell-works/avro

flag dev
description: Use development GHC flags
manual: True
default: False

flag templatehaskell
description: Build Avro.Deriving, which uses Template Haskell.
manual: False
default: True

common base { build-depends: base >= 4 && < 5 }

common aeson { build-depends: aeson }
common array { build-depends: array }
common avro { build-depends: avro }
common base16-bytestring { build-depends: base16-bytestring }
common bifunctors { build-depends: bifunctors }
common binary { build-depends: binary }
common bytestring { build-depends: bytestring }
common containers { build-depends: containers }
common data-binary-ieee754 { build-depends: data-binary-ieee754 }
common deepseq { build-depends: deepseq }
common directory { build-depends: directory }
common extra { build-depends: extra }
common fail { build-depends: fail }
common gauge { build-depends: gauge }
common hashable { build-depends: hashable }
common hspec { build-depends: hspec }
common lens { build-depends: lens }
common lens-aeson { build-depends: lens-aeson }
common mtl { build-depends: mtl }
common pure-zlib { build-depends: pure-zlib }
common QuickCheck { build-depends: QuickCheck }
common random { build-depends: random }
common raw-strings-qq { build-depends: raw-strings-qq }
common scientific { build-depends: scientific }
common semigroups { build-depends: semigroups }
common tagged { build-depends: tagged }
common text { build-depends: text >= 1.2.3 && < 1.3 }
common tf-random { build-depends: tf-random }
common transformers { build-depends: transformers }
common unordered-containers { build-depends: unordered-containers }
common vector { build-depends: vector }
common zlib { build-depends: zlib }

common config
default-language: Haskell2010
if flag(templatehaskell)
other-extensions: TemplateHaskell
build-depends:
template-haskell >=2.4
if flag(dev)
ghc-options: -Wall -Werror

library
import: base
, aeson
, array
, base16-bytestring
, bifunctors
, binary
, bytestring
, containers
, config
, data-binary-ieee754
, deepseq
, fail
, hashable
, mtl
, scientific
, semigroups
, tagged
, text
, tf-random
, unordered-containers
, vector
, zlib
exposed-modules:
Data.Avro
Data.Avro.Codec
Data.Avro.Decode
Data.Avro.Decode.Get
Data.Avro.Decode.Lazy
Data.Avro.Decode.Lazy.Convert
Data.Avro.Decode.Lazy.Deconflict
Data.Avro.Decode.Lazy.FromLazyAvro
Data.Avro.Decode.Lazy.LazyValue
Data.Avro.Decode.Strict
Data.Avro.Decode.Strict.Internal
Data.Avro.DecodeRaw
Data.Avro.Deconflict
Data.Avro.Deriving
Data.Avro.Deriving.Lift
Data.Avro.Deriving.NormSchema
Data.Avro.EitherN
Data.Avro.Encode
Data.Avro.EncodeRaw
Data.Avro.FromAvro
Data.Avro.HasAvroSchema
Data.Avro.JSON
Data.Avro.Schema
Data.Avro.ToAvro
Data.Avro.Types
Data.Avro.Types.Value
Data.Avro.Zag
Data.Avro.Zig
hs-source-dirs: src
other-extensions: OverloadedStrings

test-suite test
import: base
, aeson
, array
, avro
, base16-bytestring
, bifunctors
, binary
, bytestring
, containers
, directory
, extra
, fail
, hashable
, hspec
, lens
, lens-aeson
, mtl
, pure-zlib
, QuickCheck
, raw-strings-qq
, scientific
, semigroups
, tagged
, text
, tf-random
, transformers
, unordered-containers
, vector
type: exitcode-stdio-1.0
ghc-options: -threaded
default-language: Haskell2010
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover
other-modules:
Avro.Codec.ArraySpec
Avro.Codec.BoolSpec
Avro.Codec.CodecRawSpec
Avro.Codec.DoubleSpec
Avro.Codec.FloatSpec
Avro.Codec.Int64Spec
Avro.Codec.MaybeSpec
Avro.Codec.NestedSpec
Avro.Codec.TextSpec
Avro.Codec.ZigZagSpec
Avro.Decode.Lazy.ContainerSpec
Avro.Decode.Lazy.RawBlocksSpec
Avro.Decode.Lazy.RawValuesSpec
Avro.Decode.Lazy.ValuesSpec
Avro.Deconflict.A.Reader
Avro.Deconflict.A.Writer
Avro.Deconflict.B.Reader
Avro.Deconflict.B.Writer
Avro.Deconflict.C.Reader
Avro.Deconflict.C.Writer
Avro.DeconflictSpec
Avro.DefaultsSpec
Avro.EncodeRawSpec
Avro.JSONSpec
Avro.NamespaceSpec
Avro.NormSchemaSpec
Avro.ReuseFixedSpec
Avro.SchemaSpec
Avro.THEncodeContainerSpec
Avro.THEnumSpec
Avro.THLogicalTypeSpec
Avro.THReusedSpec
Avro.THSimpleSpec
Avro.THUnionSpec
Avro.ToAvroSpec
DecodeContainer
Example1
Paths_avro
autogen-modules: Paths_avro
hs-source-dirs: test


benchmark bench-time
import: base, config
, avro
, aeson
, bytestring
, containers
, gauge
, hashable
, mtl
, random
, raw-strings-qq
, text
, transformers
, unordered-containers
, vector
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Bench.Deconflict
Bench.Deconflict.Reader
Bench.Deconflict.Writer
Bench.Time
hs-source-dirs: bench
1 change: 1 addition & 0 deletions avro/0.4.5.3/avro.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"9582868435581391cca8057e299b6868","Skein512_512":"36aea1b120ce29dea27c5ba6e9e32de51b408aad0c5c19739d19df1c2fd0a6c5b814862344fb623ef7ebed3d85a93800f7ce14eb83841a8d0559819f314a361e","SHA1":"cdd4420a3e0fadd94fbc07e65c56c691f02c5dc1","SHA512":"5b8c2b8f406c90d707bac63e73bd9a2479c01b15e2342c771f4b2b08d61318360840fddb314bd5a6d9fa1b0613e4e66c963db3dfa5d17bb1c29239686e81305b","SHA256":"7d26da456bfa5188b9df271bdaaae1b1c435f917c599a0ea65fa404423ade12b"},"package-locations":["https://hackage.haskell.org/package/avro-0.4.5.3/avro-0.4.5.3.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/avro-0.4.5.3.tar.gz"],"package-size":61521}

0 comments on commit 7ab3edb

Please sign in to comment.