packages feed

ms-graph-api-0.11.0.0: ms-graph-api.cabal

name:                ms-graph-api
version:             0.11.0.0
synopsis:            Microsoft Graph API
description:         Bindings to the Microsoft Graph API
homepage:            https://github.com/unfoldml/ms-graph-api
license:             BSD3
license-file:        LICENSE
author:              Marco Zocca
maintainer:          oss@unfoldml.com
copyright:           2023 Marco Zocca
category:            Web
build-type:          Simple
extra-source-files:  README.md
                     CHANGELOG.md
cabal-version:       >=1.10
tested-with:         GHC == 9.2.8

library
  default-language:    Haskell2010
  hs-source-dirs:      src
  exposed-modules:     MSGraphAPI
                       MSGraphAPI.ChangeNotifications.Subscription
                       MSGraphAPI.User
                       MSGraphAPI.Users.User
                       MSGraphAPI.Users.Group
                       MSGraphAPI.Drive
                       MSGraphAPI.Files.Drive
                       MSGraphAPI.Files.DriveItem
  other-modules:       MSGraphAPI.Internal.Common
  build-depends:       aeson
                     , base >= 4.7 && < 5
                     , bytestring
                     , containers
                     , hoauth2 == 2.6.0
                     , http-client >= 0.7.13.1
                     , http-client-tls >= 0.3
                     , http-types
                     , modern-uri
                     , req
                     , scientific
                     , text
                     , time >= 1.8
                     , transformers >= 0.5
                     , unliftio
  ghc-options:         -Wall
                       -Wcompat
                       -Wno-unused-imports
  default-extensions:  OverloadedStrings
                       DeriveGeneric
                       DeriveFunctor
                       DerivingStrategies
                       LambdaCase

source-repository head
  type:     git
  location: https://github.com/unfoldml/ms-graph-api