2015-04-08 22:13:02 +02:00
|
|
|
name: breve
|
2015-04-08 12:47:56 +02:00
|
|
|
version: 0.0.1.0
|
2015-04-08 21:38:38 +02:00
|
|
|
synopsis: a url shortener
|
|
|
|
description:
|
|
|
|
|
|
|
|
A web application that provides a simple interface to shortening
|
|
|
|
long urls creating smaller and easy to remember links.
|
|
|
|
|
2015-04-08 22:13:02 +02:00
|
|
|
homepage: https://github.com/rnhmjoj/breve
|
2015-04-08 21:38:38 +02:00
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
2015-04-08 12:47:56 +02:00
|
|
|
author: Rnhmjoj
|
|
|
|
maintainer: micheleguerinirocco@me.com
|
2015-04-08 21:38:38 +02:00
|
|
|
copyright: (C) Michele Guerini Rocco 2015
|
2015-04-08 12:47:56 +02:00
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
2015-04-08 21:38:38 +02:00
|
|
|
extra-source-files: README.md, LICENSE
|
|
|
|
cabal-version: >=1.10
|
2015-04-08 12:47:56 +02:00
|
|
|
|
2015-04-08 22:13:02 +02:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/rnhmjoj/breve
|
|
|
|
|
|
|
|
executable breve
|
2015-04-08 12:47:56 +02:00
|
|
|
main-is: Main.hs
|
2015-04-08 21:38:38 +02:00
|
|
|
default-language: Haskell2010
|
2015-04-08 12:47:56 +02:00
|
|
|
build-depends: base, simple >= 0.8.0,
|
2015-04-08 21:38:38 +02:00
|
|
|
wai ==2.*, wai-extra ==2.*, warp ==2.1.*,
|
|
|
|
aeson ==0.8.*, bytestring ==0.10.*,
|
|
|
|
transformers ==0.3.*, mtl ==2.1.*,
|
|
|
|
hashtables ==1.2.*, cryptohash ==0.11.*,
|
|
|
|
binary ==0.7.*, random ==1.1.*
|
|
|
|
ghc-options: -threaded -O2
|