packages feed

htoml 0.1.0.0 → 0.1.0.1

raw patch · 1 files changed

+46/−48 lines, 1 files

Files

htoml.cabal view
@@ -1,22 +1,22 @@-name:                   htoml-version:                0.1.0.0-synopsis:               A parser for TOML files.-description:            TOML is a obvious and minimal format for config files.-                        .-                        This package provides a TOML parser,-                        build with the Parsec library of parser combinators.-                        .-                        It provides a JSON interface using the Aeson library.-homepage:               https://github.com/cies/htoml-bug-reports:            https://github.com/cies/htoml/issues-license:                BSD3-license-file:           LICENSE-author:                 Cies Breijs-maintainer:             Cies Breijs-category:               Text-build-type:             Simple-cabal-version:          >= 1.10-extra-source-files:     README.md+name:                     htoml+version:                  0.1.0.1+synopsis:                 A parser for TOML files.+description:              TOML is a obvious and minimal format for config files.+                          .+                          This package provides a TOML parser,+                          build with the Parsec library of parser combinators.+                          .+                          It provides a JSON interface using the Aeson library.+homepage:                 https://github.com/cies/htoml+bug-reports:              https://github.com/cies/htoml/issues+license:                  BSD3+license-file:             LICENSE+author:                   Cies Breijs+maintainer:               Cies Breijs+category:                 Text+build-type:               Simple+cabal-version:            >= 1.10+extra-source-files:       README.md                         , test/BurntSushi/fetch-toml-tests.sh                         , test/BurntSushi/valid/*.toml                         , test/BurntSushi/valid/*.json@@ -25,18 +25,18 @@                         , benchmarks/repeated.toml  -source-repository       head-  type:                 git-  location:             https://github.com/cies/htoml.git+source-repository         head+  type:                   git+  location:               https://github.com/cies/htoml.git  library-  exposed-modules:      Text.Toml+  exposed-modules:        Text.Toml                         , Text.Toml.Parser                         , Text.Toml.Types-  ghc-options:          -Wall-  hs-source-dirs:       src-  default-language:     Haskell2010-  build-depends:        base             >= 4.6  && < 5+  ghc-options:            -Wall+  hs-source-dirs:         src+  default-language:       Haskell2010+  build-depends:          base             >= 4.6  && < 5                         , parsec         >= 3.1.5                         , containers     >= 0.5  && < 0.6                         , unordered-containers@@ -47,14 +47,13 @@                         , old-locale     -any  executable tests-  hs-source-dirs:       test-  ghc-options:          -Wall-  main-is:              Test.hs-  other-modules:        BurntSushi-                        , BurntSushi+  hs-source-dirs:         test+  ghc-options:            -Wall+  main-is:                Test.hs+  other-modules:          BurntSushi                         , Text.Toml.Parser.Spec-  default-language:     Haskell2010-  build-depends:        base             >= 4.6  && < 5+  default-language:       Haskell2010+  build-depends:          base             >= 4.6  && < 5                         , parsec         >= 3.1.5                         , containers     >= 0.5  && < 0.6                         , bytestring@@ -71,15 +70,14 @@                         , tasty-hunit  test-suite Tests-  hs-source-dirs:       test-  ghc-options:          -Wall-  main-is:              Test.hs-  other-modules:        BurntSushi-                        , BurntSushi+  hs-source-dirs:         test+  ghc-options:            -Wall+  main-is:                Test.hs+  other-modules:          BurntSushi                         , Text.Toml.Parser.Spec-  type:                 exitcode-stdio-1.0-  default-language:     Haskell2010-  build-depends:        base             >= 4.6  && < 5+  type:                   exitcode-stdio-1.0+  default-language:        Haskell2010+  build-depends:          base             >= 4.6  && < 5                         , parsec         >= 3.1.5                         , containers     >= 0.5  && < 0.6                         , bytestring@@ -95,12 +93,12 @@                         , tasty-hunit  benchmark benchmarks-  hs-source-dirs:       benchmarks .-  ghc-options:          -O2 -Wall -rtsopts-  main-is:              Benchmarks.hs-  type:                 exitcode-stdio-1.0-  default-language:     Haskell2010-  build-depends:        base             >= 4.6  && < 5+  hs-source-dirs:         benchmarks .+  ghc-options:            -O2 -Wall -rtsopts+  main-is:                Benchmarks.hs+  type:                   exitcode-stdio-1.0+  default-language:       Haskell2010+  build-depends:          base             >= 4.6  && < 5                         , parsec         >= 3.1.5                         , containers     >= 0.5  && < 0.6                         , unordered-containers