1cabal-version: 3.02name: scfg3version: 1.0.04synopsis: SCFG parser for Haskell5description:6 A simple parser for SCFG (simple configuration format) files78author: Marius Lysakerrud9maintainer: mail@marius.pm10license: MIT11license-file: LICENSE12homepage: https://git.sr.ht/~mariusl/haskell-scfg13bug-reports: https://lists.sr.ht/~mariusl/public-inbox14category: Data15build-type: Simple16tested-with: GHC ==9.8.2 || ==9.10.317extra-doc-files:18 CHANGELOG.md19 README.md2021common warnings22 ghc-options: -Wall2324library25 import: warnings26 exposed-modules:27 Data.Scfg28 Data.Scfg.Formatter29 Data.Scfg.Types3031 other-modules: Data.Scfg.Parser32 build-depends:33 , base >=4.19.0.0 && <4.2134 , megaparsec >=9.7.0 && <9.835 , text >=2.1.0 && <2.23637 hs-source-dirs: src38 default-language: Haskell20103940test-suite scfg-test41 import: warnings42 default-language: Haskell201043 other-modules:44 Data.Scfg45 Data.Scfg.Formatter46 Data.Scfg.Parser47 Data.Scfg.Types4849 type: exitcode-stdio-1.050 hs-source-dirs: test src51 main-is: Test.hs52 build-depends:53 , base >=4.19.0.0 && <4.2154 , hspec >=2.11.0 && <2.1255 , megaparsec >=9.7.0 && <9.856 , temporary >=1.3 && <1.457 , text >=2.1.0 && <2.25859source-repository head60 type: git61 location: https://git.sr.ht/~mariusl/haskell-scfg