cabal-version: 3.0
name: domain-aeson
version: 0.1
synopsis: Integration of domain with aeson
homepage: https://github.com/nikita-volkov/domain-aeson
bug-reports: https://github.com/nikita-volkov/domain-aeson/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2022 Nikita Volkov
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: git://github.com/nikita-volkov/domain-aeson.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:
DomainAeson
other-modules:
DomainAeson.InstanceDecs
DomainAeson.Prelude
DomainAeson.Util.AesonTH
build-depends:
aeson >=2 && <3,
base >=4.12 && <5,
domain-core >=0.1 && <0.2,
text >=1 && <3,
template-haskell >=2.14 && <3,
template-haskell-compat-v0208 >=0.1.7 && <0.2,
th-lego >=0.2.1 && <0.4,
unordered-containers >=0.2.10 && <0.3,
vector >=0.12 && <0.13,
test-suite demo
type: exitcode-stdio-1.0
hs-source-dirs: demo
main-is: Main.hs
default-language: Haskell2010
build-depends:
domain,
domain-aeson,
rerebase >=1.9 && <2,