cabal-version: 3.0 name: cases version: 0.1.4.3 synopsis: A converter for spinal, snake and camel cases description: A parser-based converter library for spinal, snake and camel cases. category: Text homepage: https://github.com/nikita-volkov/cases bug-reports: https://github.com/nikita-volkov/cases/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2014, Nikita Volkov license: MIT license-file: LICENSE source-repository head type: git location: git://github.com/nikita-volkov/cases.git common base default-language: Haskell2010 default-extensions: NoImplicitPrelude NoMonomorphismRestriction Arrows BangPatterns BlockArguments ConstraintKinds DataKinds DefaultSignatures DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable EmptyDataDecls FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase LambdaCase LiberalTypeSynonyms MagicHash MultiParamTypeClasses MultiWayIf OverloadedStrings ParallelListComp PatternGuards QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies TypeOperators UnboxedTuples library import: base hs-source-dirs: library exposed-modules: Cases other-modules: Cases.Prelude build-depends: , attoparsec >=0.13 && <0.15 , base >=4.11 && <5 , text >=1 && <3 test-suite api-tests import: base type: exitcode-stdio-1.0 hs-source-dirs: api-tests main-is: Main.hs ghc-options: -threaded -with-rtsopts=-N build-depends: , cases , hspec >=2.11 && <3 , rerebase >=1 && <2 benchmark benchmark import: base type: exitcode-stdio-1.0 hs-source-dirs: benchmark main-is: Benchmark.hs ghc-options: -O2 -threaded -with-rtsopts=-N build-depends: , cases , criterion >=1.6.3 && <2 , rerebase >=1 && <2