packages feed

domain-cereal-0.1: domain-cereal.cabal

cabal-version: 3.0

name: domain-cereal
version: 0.1
synopsis: Integration of domain with cereal
homepage: https://github.com/nikita-volkov/domain-cereal
bug-reports: https://github.com/nikita-volkov/domain-cereal/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2021 Nikita Volkov
license: MIT
license-file: LICENSE
build-type: Simple

source-repository head
  type: git
  location: git://github.com/nikita-volkov/domain-cereal.git

library
  hs-source-dirs: library
  default-extensions: BangPatterns, BlockArguments, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DerivingVia, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedLabels, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, StrictData, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedTuples
  default-language: Haskell2010
  exposed-modules:
    DomainCereal
  other-modules:
    DomainCereal.TH
    DomainCereal.Prelude
  build-depends:
    base >=4.12 && <5,
    cereal >=0.5 && <0.6,
    domain-core >=0.1 && <0.2,
    leb128-cereal >=1.2 && <1.3,
    text >=1 && <3,
    template-haskell >=2.14 && <3,
    template-haskell-compat-v0208 >=0.1.7 && <0.2,
    th-lego >=0.3 && <0.4,

test-suite demo
  type: exitcode-stdio-1.0
  hs-source-dirs: demo
  main-is: Main.hs
  default-language: Haskell2010
  build-depends:
    cereal,
    cereal-text >=0.1.0.2 && <0.2,
    domain,
    domain-cereal,
    rerebase >=1.9 && <2,