40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
|
-- Initial hasciidoc.cabal generated by cabal init. For further
|
||
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
||
|
|
||
|
name: hasciidoc
|
||
|
version: 0.1.0.0
|
||
|
synopsis: An asciidoc implementation
|
||
|
-- description:
|
||
|
license: BSD3
|
||
|
license-file: LICENSE
|
||
|
author: Levi Pearson
|
||
|
maintainer: levipearson@gmail.com
|
||
|
-- copyright:
|
||
|
category: Text
|
||
|
build-type: Simple
|
||
|
-- extra-source-files:
|
||
|
cabal-version: >=1.10
|
||
|
|
||
|
library
|
||
|
exposed-modules: Hasciidoc
|
||
|
-- other-modules:
|
||
|
-- other-extensions:
|
||
|
build-depends: base >=4.6 && <4.7
|
||
|
, attoparsec
|
||
|
, containers
|
||
|
, text
|
||
|
-- hs-source-dirs:
|
||
|
default-language: Haskell2010
|
||
|
hs-source-dirs: src
|
||
|
|
||
|
test-suite tests
|
||
|
type: exitcode-stdio-1.0
|
||
|
main-is: Main.hs
|
||
|
build-depends: base >= 4.6 && < 4.7
|
||
|
, attoparsec
|
||
|
, text
|
||
|
, hasciidoc
|
||
|
build-depends: tasty
|
||
|
, tasty-hspec
|
||
|
hs-source-dirs: tests
|
||
|
default-language: Haskell2010
|