packages feed

sugar-0.0.1: sugar.cabal

name: sugar
version: 0.0.1
synopsis: A general purpose data language for humans.
homepage: https://github.com/jxv/sugar#readme
description: Alternative to: JSON, YAML, TOML, et cetera. Please see the README on GitHub at <https://github.com/jxv/sugar#readme>
category: Text, Configuration
bug-reports: https://github.com/jxv/sugar/issues
author: Joe Vargas
maintainer: Joe Vargas
license: OtherLicense
license-file: LICENSE
build-type: Simple
cabal-version: 1.14
extra-source-files:
    CHANGELOG.md
    LICENSE
    README.md

source-repository head
  type: git
  location: https://github.com/jxv/sugar

library
  exposed-modules:
      Sugar
      Sugar.Types
      Sugar.IO
      Sugar.Parser
      Sugar.Lexer
      Sugar.TH
  hs-source-dirs:
      src
  default-extensions:
  ghc-options: -Wall
  build-depends:
      base >=4.7 && <5
    , bytestring
    , cereal
    , store
    , containers >0.5 && <1
    , ordered-containers
    , safe
    , text
    , text-conversions
    , unordered-containers
    , vector
  default-language: Haskell2010

test-suite sugar-tests
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      tests
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base
    , file-embed
    , hspec
    , sugar
    , tasty
    , tasty-hspec
    , text
  default-language: Haskell2010