-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e1bb0e
commit dfeecd7
Showing
1 changed file
with
22 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
cabal-version: 3.0 | ||
name: unliftio-servant-server | ||
version: 0.1.0.0 | ||
synopsis: Use MonadUnliftIO on servant APIs | ||
cabal-version: 3.0 | ||
name: unliftio-servant-server | ||
version: 0.1.0.0 | ||
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 | ||
|
||
category: Servant, Server | ||
homepage: | ||
https://github.com/bellroy/haskell/tree/master/lib/unliftio-servant-server | ||
|
||
bug-reports: https://github.com/bellroy/haskell/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.7 || ==9.4.5 || ==9.6.2 | ||
bug-reports: https://github.com/bellroy/haskell/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.7 || ==9.4.5 || ==9.6.2 | ||
|
||
source-repository head | ||
type: git | ||
|
@@ -37,10 +41,10 @@ common opts-exe | |
|
||
common deps | ||
build-depends: | ||
, base >=4.14 && <4.19 | ||
, mtl >=2.2.2 && <2.4 | ||
, servant >=0.19 && <0.21 | ||
, servant-server >=0.19 && <0.21 | ||
, base >=4.14 && <4.19 | ||
, mtl >=2.2.2 && <2.4 | ||
, servant >=0.19 && <0.21 | ||
, servant-server >=0.19 && <0.21 | ||
, unliftio >=0.1.0.0 && <0.3.0.0 | ||
|
||
library | ||
|