-
Notifications
You must be signed in to change notification settings - Fork 0
/
unliftio-servant-server.cabal
46 lines (40 loc) · 1.52 KB
/
unliftio-servant-server.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cabal-version: 3.0
name: unliftio-servant-server
version: 0.1.0.1
synopsis: Use MonadUnliftIO on servant APIs
description:
unliftio-servant-server provides convenience functions for running
servant APIs whose monads have a 'MonadUnliftIO' instance.
category: Servant, Server
homepage: https://github.com/bellroy/unliftio-servant-server
bug-reports: https://github.com/bellroy/unliftio-servant-server/issues
author: Bellroy Tech Team <[email protected]>
maintainer: Bellroy Tech Team <[email protected]>
copyright: Copyright (C) 2024 Bellroy Pty Ltd
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.5 || ==9.6.6 || ==9.8.2
source-repository head
type: git
location: https://github.com/bellroy/unliftio-servant-server.git
library
hs-source-dirs: src
exposed-modules: UnliftIO.Servant.Server
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Werror=incomplete-patterns
-Wredundant-constraints -Wpartial-fields -Wtabs
-Wmissing-local-signatures -fhelpful-errors
-fprint-expanded-synonyms -fwarn-unused-do-bind
build-depends:
, base >=4.14 && <4.21
, mtl >=2.2.2 && <2.4
, servant >=0.19 && <0.21
, servant-server >=0.19 && <0.21
, unliftio-core >=0.1.0.0 && <0.3.0.0
default-language: Haskell2010