packages feed

crdt-0.1: crdt.cabal

-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:           crdt
version:        0.1
synopsis:       Conflict-free replicated data types
description:    Definitions of CmRDT and CvRDT. Implementations for some classic CRDTs.
category:       Distributed Systems
homepage:       https://github.com/cblp/crdt#readme
bug-reports:    https://github.com/cblp/crdt/issues
maintainer:     Yuriy Syrovetskiy <cblp@cblp.su>
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

source-repository head
  type: git
  location: https://github.com/cblp/crdt

library
  hs-source-dirs:
      lib
  build-depends:
      base >= 4.9 && < 4.10
    , vector
  exposed-modules:
      CRDT.Cm
      CRDT.Cv
      CRDT.GCounter.Cm
      CRDT.GCounter.Cv
      CRDT.GCounter.Cv.Internal
      CRDT.LWW
      CRDT.PNCounter.Cm
      CRDT.PNCounter.Cv
      CRDT.PNCounter.Cv.Internal
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test
  build-depends:
      base >= 4.9 && < 4.10
    , vector
    , derive
    , QuickCheck
    , tasty
    , tasty-quickcheck
    , crdt
  other-modules:
      Instances
      Instances.Cm
      Instances.Cv
  default-language: Haskell2010