32 lines
918 B
Plaintext
32 lines
918 B
Plaintext
-- Initial scotty-example.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: scotty-example
|
|
version: 0.1.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
license: GPL-2
|
|
license-file: LICENSE
|
|
author: Julian Ospald
|
|
maintainer: hasufell@posteo.de
|
|
-- copyright:
|
|
-- category:
|
|
build-type: Simple
|
|
extra-source-files: ChangeLog.md
|
|
cabal-version: >=1.10
|
|
|
|
executable scotty-example
|
|
main-is: Main.hs
|
|
other-modules: Helpers
|
|
-- other-extensions:
|
|
build-depends: base >=4.9 && <4.10,
|
|
bytestring,
|
|
scotty,
|
|
http-types,
|
|
text,
|
|
wai,
|
|
wai-extra,
|
|
utf8-string
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|