1
1
mirror of https://github.com/srid/rib.git synced 2024-11-30 03:45:00 +03:00
rib/rib.cabal

71 lines
1.6 KiB
Plaintext
Raw Normal View History

cabal-version: 2.2
2019-08-10 18:42:13 +03:00
name: rib
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
extra-source-files:
README.md
2019-08-10 18:42:13 +03:00
CHANGELOG.md
source-repository head
2019-08-10 18:42:13 +03:00
type: git
location: https://github.com/srid/rib
library
2019-08-10 18:42:13 +03:00
exposed-modules:
Rib
2019-08-10 18:42:13 +03:00
Rib.App
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,
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,
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,
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,
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