packages feed

asana-1.0.0.0: asana.cabal

cabal-version:      1.18
name:               asana
version:            1.0.0.0
license:            MIT
license-file:       LICENSE
maintainer:         Freckle Education
homepage:           https://github.com/freckle/asana-hs#readme
bug-reports:        https://github.com/freckle/asana-hs/issues
synopsis:           Asana API Client
description:        Please see README.md
category:           Utils
build-type:         Simple
extra-source-files: package.yaml
extra-doc-files:
    README.md
    CHANGELOG.md

source-repository head
    type:     git
    location: https://github.com/freckle/asana-hs

library
    exposed-modules:
        Asana.Api.CustomField
        Asana.Api.Gid
        Asana.Api.Named
        Asana.Api.Prelude
        Asana.Api.Project
        Asana.Api.Request
        Asana.Api.Task
        Asana.Api.Task.Search

    hs-source-dirs:     library
    other-modules:      Paths_asana
    default-language:   Haskell2010
    default-extensions:
        BangPatterns DataKinds DeriveAnyClass DeriveFoldable DeriveFunctor
        DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies
        FlexibleContexts FlexibleInstances GADTs GeneralizedNewtypeDeriving
        LambdaCase MultiParamTypeClasses NoImplicitPrelude
        NoMonomorphismRestriction OverloadedStrings RankNTypes
        RecordWildCards ScopedTypeVariables StandaloneDeriving
        TypeApplications TypeFamilies

    ghc-options:
        -Weverything -Wno-missing-exported-signatures
        -Wno-missing-import-lists -Wno-missing-local-signatures
        -Wno-monomorphism-restriction -Wno-unsafe -Wno-safe

    build-depends:
        aeson >=1.3.1.1,
        aeson-casing >=0.1.0.5,
        base >=4.11.1.0 && <5,
        bytestring >=0.10.8.2,
        hashable >=1.2.7.0,
        http-conduit >=2.3.2,
        iso8601-time >=0.1.5,
        microlens >=0.4.9.1,
        microlens-mtl >=0.1.11.1,
        monad-logger >=0.3.30,
        mtl >=2.2.2,
        scientific >=0.3.6.2,
        text >=1.2.3.1,
        time >=1.8.0.2,
        unliftio >=0.2.9.0,
        unliftio-core >=0.1.2.0,
        unordered-containers >=0.2.9.0

    if impl(ghc >=9.2)
        ghc-options: -Wno-missing-kind-signatures

    if impl(ghc >=8.10)
        ghc-options:
            -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module