2019-06-30 18:50:14 +03:00
|
|
|
cabal-version: 2.2
|
2019-08-10 18:42:13 +03:00
|
|
|
name: rib
|
2019-11-22 22:41:38 +03:00
|
|
|
version: 0.5.0.0
|
2019-08-10 18:42:13 +03:00
|
|
|
license: BSD-3-Clause
|
|
|
|
copyright: 2019 Sridhar Ratnakumar
|
|
|
|
maintainer: srid@srid.ca
|
|
|
|
author: Sridhar Ratnakumar
|
|
|
|
homepage: https://github.com/srid/rib#readme
|
|
|
|
bug-reports: https://github.com/srid/rib/issues
|
2019-08-12 17:05:47 +03:00
|
|
|
synopsis:
|
|
|
|
Static site generator using Shake
|
2019-08-10 18:42:13 +03:00
|
|
|
description:
|
|
|
|
Haskell library for writing your own static site generator
|
2019-08-22 03:08:19 +03:00
|
|
|
category: Web
|
2019-08-10 18:42:13 +03:00
|
|
|
build-type: Simple
|
2019-06-28 17:06:58 +03:00
|
|
|
extra-source-files:
|
|
|
|
README.md
|
2019-08-10 18:42:13 +03:00
|
|
|
CHANGELOG.md
|
2019-06-28 17:06:58 +03:00
|
|
|
|
|
|
|
source-repository head
|
2019-08-10 18:42:13 +03:00
|
|
|
type: git
|
|
|
|
location: https://github.com/srid/rib
|
2019-06-28 17:06:58 +03:00
|
|
|
|
2019-07-02 01:14:01 +03:00
|
|
|
library
|
2019-08-10 18:42:13 +03:00
|
|
|
exposed-modules:
|
2019-11-22 22:41:38 +03:00
|
|
|
Rib
|
2019-08-10 18:42:13 +03:00
|
|
|
Rib.App
|
2019-11-22 22:41:38 +03:00
|
|
|
Rib.Markup
|
|
|
|
Rib.Markup.MMark
|
2019-11-23 20:23:17 +03:00
|
|
|
Rib.Markup.Pandoc
|
2019-08-10 18:42:13 +03:00
|
|
|
Rib.Server
|
|
|
|
Rib.Shake
|
2019-11-24 05:44:25 +03:00
|
|
|
other-modules:
|
|
|
|
Prelude
|
2019-08-10 18:42:13 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2019-11-23 20:23:17 +03:00
|
|
|
ghc-options:
|
|
|
|
-Wall
|
|
|
|
-Wincomplete-record-updates
|
|
|
|
-Wincomplete-uni-patterns
|
2019-08-10 18:42:13 +03:00
|
|
|
build-depends:
|
2019-08-11 17:36:03 +03:00
|
|
|
aeson >=1.4.2 && <1.5,
|
2019-11-06 03:22:53 +03:00
|
|
|
async,
|
2019-11-24 05:44:25 +03:00
|
|
|
base-noprelude >=4.7 && <5,
|
2019-11-23 20:23:17 +03:00
|
|
|
binary >=0.8.6 && <0.9,
|
2019-08-11 17:36:03 +03:00
|
|
|
clay >=0.13.1 && <0.14,
|
|
|
|
cmdargs >=0.10.20 && <0.11,
|
2019-11-23 20:23:17 +03:00
|
|
|
containers >=0.6.0 && <0.7,
|
|
|
|
directory >= 1.0 && <2.0,
|
2019-11-24 19:33:32 +03:00
|
|
|
exceptions,
|
2019-11-23 02:15:50 +03:00
|
|
|
foldl,
|
2019-08-11 17:36:03 +03:00
|
|
|
fsnotify >=0.3.0 && <0.4,
|
|
|
|
lucid >=2.9.11 && <2.10,
|
2019-11-23 20:23:17 +03:00
|
|
|
megaparsec,
|
2019-11-22 22:41:38 +03:00
|
|
|
mmark,
|
|
|
|
mmark-ext,
|
2019-11-23 02:15:50 +03:00
|
|
|
modern-uri,
|
2019-11-23 20:23:17 +03:00
|
|
|
mtl >=2.2.2 && <2.3,
|
2019-11-22 22:41:38 +03:00
|
|
|
named,
|
2019-11-23 20:23:17 +03:00
|
|
|
pandoc >=2.7 && <3,
|
|
|
|
pandoc-include-code >=1.4.0 && <1.5,
|
2019-08-11 17:36:03 +03:00
|
|
|
pandoc-types >=1.17.5 && <1.18,
|
2019-11-23 21:25:02 +03:00
|
|
|
path,
|
|
|
|
path-io,
|
2019-11-24 05:44:25 +03:00
|
|
|
relude >= 0.6 && < 0.7,
|
2019-11-06 03:22:53 +03:00
|
|
|
shake,
|
2019-11-23 20:23:17 +03:00
|
|
|
text >=1.2.3 && <1.3,
|
2019-08-11 17:36:03 +03:00
|
|
|
wai >=3.2.2 && <3.3,
|
|
|
|
wai-app-static >=3.1.6 && <3.2,
|
2019-11-23 20:23:17 +03:00
|
|
|
warp
|