packages feed

odid-0.1.0.0: odid.cabal

cabal-version:      3.0
name:               odid
version:            0.1.0.0
synopsis:           Open Drone ID
description:        ASTM F3411-22a
homepage:           https://github.com/dopamane/odid
license:            MIT
license-file:       LICENSE
author:             dopamane
maintainer:         dwc1295@gmail.com
copyright:          David Cox
category:           Data
build-type:         Simple
extra-doc-files:    CHANGELOG.md
                    README.md

library
  default-language: Haskell2010
  ghc-options:      -Wall -O2
  hs-source-dirs:   lib
  exposed-modules:  Data.ODID
  build-depends:
    base < 5,
    binary,
    bytestring,
    prettyprinter

executable odid
  default-language: Haskell2010
  ghc-options:      -Wall -O2 -threaded
  hs-source-dirs:   exe
  main-is:          Main.hs
  other-modules:    Paths_odid
  autogen-modules:  Paths_odid
  build-depends:
    base < 5,
    binary,
    bytestring,
    odid,
    optparse-applicative,
    prettyprinter

test-suite test
  default-language: Haskell2010
  ghc-options:      -Wall -O2 -threaded
  hs-source-dirs:   test
  type:             exitcode-stdio-1.0
  main-is:          Main.hs
  build-depends:
    base < 5,
    binary,
    bytestring,
    hedgehog,
    odid,
    tasty,
    tasty-hedgehog,
    tasty-hunit