cabal-version: 2.4 name: serialise-uuid version: 0.1 license: BSD-3-Clause license-file: LICENSE extra-source-files: README.md CHANGELOG.md author: Renzo Carbonara maintainer: renĪ»ren.zone copyright: Copyright (c) Renzo Carbonara 2020 category: Data build-type: Simple synopsis: Encode and decode UUID values in CBOR using uuid-types, cborg and serialise. description: Encode and decode UUID values in CBOR using uuid-types, cborg and serialise. homepage: https://gitlab.com/k0001/serialise-uuid bug-reports: https://gitlab.com/k0001/serialise-uuid/issues tested-with: GHC == 8.6.0, GHC == 8.6.5, GHC == 8.8.2 library hs-source-dirs: lib ghc-options: -Wall -Werror=incomplete-patterns -O2 ghcjs-options: -Wall -Werror=incomplete-patterns -O3 default-language: Haskell2010 exposed-modules: Codec.Serialise.UUID Codec.CBOR.UUID build-depends: cborg, base ==4.*, bytestring, serialise, uuid-types, test-suite test default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Main.hs build-depends: base, bytestring, serialise, serialise-uuid, tasty, tasty-hunit, tasty-quickcheck, uuid-types,