1cabal-version: 3.02name: scmdoc3version: 0.1.04synopsis: R7RS Scheme documentation tool5description: Inline documentation tool for R7RS Scheme based on source code comments67license: AGPL-3.0-only8license-file: LICENSE9author: Sören Tempel10maintainer: soeren+git@soeren-tempel.net1112category: Development13build-type: Simple1415extra-doc-files: README.md1617common warnings18 ghc-options: -Wall1920library21 import: warnings22 exposed-modules: SchemeDoc23 , SchemeDoc.Types24 , SchemeDoc.Error25 , SchemeDoc.Parser.R7RS26 , SchemeDoc.Format.Variable27 , SchemeDoc.Format.Syntax28 , SchemeDoc.Format.Formatter29 , SchemeDoc.Format.Procedure30 , SchemeDoc.Format.Record31 , SchemeDoc.Format.Library32 , SchemeDoc.Format.Types33 , SchemeDoc.Format.Util34 other-modules: SchemeDoc.Parser.Number35 , SchemeDoc.Parser.Util36 hs-source-dirs: src37 default-language: Haskell20103839 build-depends:40 base >=4.15.0.0 && <4.20.0.0,41 parsec ^>=3.1.15.1,42 blaze-html ^>=0.9.1.2,43 cmark-gfm ^>=0.2.5,44 text4546executable scmdoc47 import: warnings48 main-is: Main.hs49 hs-source-dirs: app50 default-language: Haskell20105152 build-depends:53 base >=4.15.0.0 && <4.20.0.0,54 parsec ^>=3.1.15.1,55 directory ^>=1.3.8.0,56 filepath ^>=1.4.100.0,57 blaze-html ^>=0.9.1.2,58 optparse-applicative >=0.16.1 && <0.17,59 text,60 scmdoc6162test-suite scmdoc-test63 default-language: Haskell201064 type: exitcode-stdio-1.065 hs-source-dirs: test66 main-is: Main.hs67 other-modules: Parser68 , Library69 , Record70 , Formatter71 , Util7273 build-depends:74 base >=4.15.0.0 && <=4.18.0.0,75 tasty ^>=1.4.2.3,76 tasty-hunit ^>=0.10.0.3,77 parsec ^>=3.1.15.1,78 text,79 scmdoc