-
Notifications
You must be signed in to change notification settings - Fork 0
/
yesod-transloadit.cabal
62 lines (57 loc) · 1.9 KB
/
yesod-transloadit.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: yesod-transloadit
version: 0.7.1.0
synopsis: Transloadit support for Yesod
description: Drop in Transloadit capabilites for Yesod web apps
license: MIT
license-file: LICENSE
author: Bob Long
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/bobjflong/yesod-transloadit.git
library
exposed-modules: Yesod.Transloadit, Yesod.Transloadit.Internal
ghc-options: -Wall
other-modules: Yesod.Transloadit.OrderedJSON
build-depends: base < 5
, aeson
, text
, time
, old-locale
, cryptohash
, bytestring
, byteable
, yesod
, yesod-form
, yesod-core
, transformers
, lens
, shakespeare
, lens-aeson
, unordered-containers
, mime
, network-uri
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
ghc-options: -Wall
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
build-depends: base
, yesod-transloadit
, yesod-test
, hspec
, yesod
, yesod-form
, old-locale
, text
, aeson
, containers
, mime
, network-uri
default-language: Haskell2010