mirror of
https://github.com/srid/rib.git
synced 2024-11-26 13:50:31 +03:00
72 lines
1.7 KiB
Plaintext
72 lines
1.7 KiB
Plaintext
cabal-version: 2.2
|
|
name: rib
|
|
version: 0.5.0.0
|
|
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
|
|
synopsis:
|
|
Static site generator using Shake
|
|
description:
|
|
Haskell library for writing your own static site generator
|
|
category: Web
|
|
build-type: Simple
|
|
extra-source-files:
|
|
README.md
|
|
CHANGELOG.md
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/srid/rib
|
|
|
|
library
|
|
exposed-modules:
|
|
Rib
|
|
Rib.App
|
|
Rib.Document
|
|
Rib.Markup.MMark
|
|
Rib.Markup.Pandoc
|
|
Rib.Server
|
|
Rib.Shake
|
|
other-modules:
|
|
Prelude
|
|
Rib.Markup
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
ghc-options:
|
|
-Wall
|
|
-Wincomplete-record-updates
|
|
-Wincomplete-uni-patterns
|
|
build-depends:
|
|
aeson >=1.4.2 && <1.5,
|
|
async,
|
|
base-noprelude >=4.7 && <5,
|
|
binary >=0.8.6 && <0.9,
|
|
clay >=0.13.1 && <0.14,
|
|
cmdargs >=0.10.20 && <0.11,
|
|
containers >=0.6.0 && <0.7,
|
|
directory >= 1.0 && <2.0,
|
|
exceptions,
|
|
foldl,
|
|
fsnotify >=0.3.0 && <0.4,
|
|
lucid >=2.9.11 && <2.10,
|
|
megaparsec,
|
|
mmark,
|
|
mmark-ext,
|
|
modern-uri,
|
|
mtl >=2.2.2 && <2.3,
|
|
named,
|
|
pandoc >=2.7 && <3,
|
|
pandoc-include-code >=1.4.0 && <1.5,
|
|
pandoc-types >=1.17.5 && <1.18,
|
|
path,
|
|
path-io,
|
|
relude >= 0.6 && < 0.7,
|
|
shake,
|
|
text >=1.2.3 && <1.3,
|
|
wai >=3.2.2 && <3.3,
|
|
wai-app-static >=3.1.6 && <3.2,
|
|
warp
|