name: swagger2 version: 2.1.6 x-revision: 2 synopsis: Swagger 2.0 data model description: This library is inteded to be used for decoding and encoding Swagger 2.0 API specifications as well as manipulating them. . The original Swagger 2.0 specification is available at http://swagger.io/specification/. homepage: https://github.com/GetShopTV/swagger2 bug-reports: https://github.com/GetShopTV/swagger2/issues license: BSD3 license-file: LICENSE author: Nickolay Kudasov maintainer: nickolay@getshoptv.com copyright: (c) 2015-2016, GetShopTV category: Web, Swagger build-type: Custom extra-source-files: README.md , CHANGELOG.md , examples/*.hs , include/overlapping-compat.h cabal-version: >=1.10 tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1 custom-setup setup-depends: base, Cabal, cabal-doctest >=1.0.2 && <1.1 library build-depends: network <2.9 hs-source-dirs: src include-dirs: include exposed-modules: Data.Swagger Data.Swagger.Declare Data.Swagger.Lens Data.Swagger.Operation Data.Swagger.ParamSchema Data.Swagger.Schema Data.Swagger.Schema.Validation Data.Swagger.SchemaOptions -- internal modules Data.Swagger.Internal Data.Swagger.Internal.Schema Data.Swagger.Internal.Schema.Validation Data.Swagger.Internal.ParamSchema Data.Swagger.Internal.Utils Data.Swagger.Internal.AesonUtils Data.Swagger.Internal.TypeShape build-depends: base >=4.7 && <4.11 , base-compat >=0.9.1 && <0.10 , aeson >=1.0.0.0 , bytestring , containers , hashable , generics-sop >=0.2 && <0.4 , http-media >=0.6 , insert-ordered-containers >=0.1.0.0 && <0.3 , lens , mtl , network , scientific , text , template-haskell , time , transformers , transformers-compat >= 0.3 , unordered-containers , vector , uuid-types >=1.0.2 && <1.1 if !impl(ghc >= 7.10) build-depends: nats >=1.1.1 && <1.2 default-language: Haskell2010 test-suite spec type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs -- We need aeson's toEncoding for doctests too build-depends: base , base-compat , aeson >=0.10.0.0 , aeson-qq , bytestring , containers , hashable , hspec , insert-ordered-containers , HUnit , mtl , QuickCheck >=2.8.2 , swagger2 , text , time , unordered-containers , vector , lens other-modules: SpecCommon Data.SwaggerSpec Data.Swagger.ParamSchemaSpec Data.Swagger.SchemaSpec Data.Swagger.Schema.ValidationSpec default-language: Haskell2010 -- https://github.com/haskell/cabal/issues/3708 build-tool-depends: hspec-discover:hspec-discover test-suite doctests -- See QuickCheck note in https://github.com/phadej/cabal-doctest#notes build-depends: base, doctest, Glob, QuickCheck default-language: Haskell2010 hs-source-dirs: test main-is: doctests.hs type: exitcode-stdio-1.0 source-repository head type: git location: https://github.com/GetShopTV/swagger2.git