-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathservant-JuicyPixels.cabal
40 lines (37 loc) · 1.28 KB
/
servant-JuicyPixels.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
name: servant-JuicyPixels
version: 0.3.1.1
homepage: https://github.com/tvh/servant-JuicyPixels
license: BSD3
license-file: LICENSE
author: Timo von Holtz
maintainer: [email protected]
category: Graphics
build-type: Simple
cabal-version: >=1.10
synopsis: Servant support for JuicyPixels
description: Provides content types for image types supported by JuicyPixels
tested-with: GHC==8.6.5, GHC==8.8.4, GHC==8.10.4
source-repository HEAD
type: git
location: https://github.com/tvh/servant-JuicyPixels.git
library
exposed-modules: Servant.JuicyPixels
build-depends: base >=4.7 && <5
, bytestring
, http-media
, JuicyPixels >=3.2.6
, servant >=0.4
hs-source-dirs: lib
default-language: Haskell2010
executable image-conversion
main-is: image-conversion.hs
hs-source-dirs: examples
ghc-options: -Wall
default-language: Haskell2010
build-depends: base
, JuicyPixels
, servant
, servant-server
, servant-JuicyPixels
, warp
, wai