diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2016-06-08 05:00:16 +0800 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2016-06-08 23:42:31 +0800 |
commit | 8a02852030716dbdbd64efdd4954ab9ac8f828f9 (patch) | |
tree | 690a216e08f4a2d97dfe80886fd2053f4283c4b0 /juandelacosa.cabal | |
parent | 50fbf638a92b0dfc85b9000bc026911f798dede8 (diff) | |
download | juandelacosa-8a02852030716dbdbd64efdd4954ab9ac8f828f9.tar.gz |
Simple Web UI for changing password
Using Bootstrap & jQuery.
Diffstat (limited to 'juandelacosa.cabal')
-rw-r--r-- | juandelacosa.cabal | 45 |
1 files changed, 28 insertions, 17 deletions
diff --git a/juandelacosa.cabal b/juandelacosa.cabal index 95dd77a..3503894 100644 --- a/juandelacosa.cabal +++ b/juandelacosa.cabal @@ -14,6 +14,12 @@ category: Databases, Web build-type: Simple extra-source-files: README.md ChangeLog.md cabal-version: >= 1.20 +data-files: + index.html + static/external/bootstrap/css/*.min.css + static/external/bootstrap/js/*.min.js + static/external/jquery-2.2.4.min.js + static/juandelacosa.js source-repository head type: git @@ -25,22 +31,27 @@ executable juandelacosa hs-source-dirs: src main-is: Main.hs other-modules: - Application - , Server + Application + Server build-depends: - base >= 4.8 && < 5 - , base64-bytestring >= 1.0 - , bytestring >= 0.10 - , case-insensitive >= 1.2 - , docopt >= 0.7 - , entropy >= 0.3 - , http-types >= 0.9 - , mysql >= 0.1 - , mysql-simple >= 0.2 - , network >= 2.6 - , raw-strings-qq >= 1.0 - , resource-pool >= 0.2 - , unix >= 2.7 - , wai >= 3.2 - , warp >= 3.2 + base >= 4.8 && < 50 + , base64-bytestring >= 1.0 + , bytestring >= 0.10 + , data-default-class + , docopt >= 0.7 + , entropy >= 0.3 + , http-types >= 0.9 + , interpolatedstring-perl6 >= 1.0 + , mtl >= 2.2 + , mysql >= 0.1 + , mysql-simple >= 0.2 + , network >= 2.6 + , resource-pool >= 0.2 + , scotty >= 0.10 + , text >= 1.2 + , unix >= 2.7 + , wai >= 3.2 + , wai-extra >= 3.0 + , wai-middleware-static >= 0.8 + , warp >= 3.2 |