attoparsec-aeson (empty) → 2.1.0.0
raw patch · 2 files changed
+71/−0 lines, 2 filesdep +aesondep +base
Dependencies added: aeson, base
Files
- LICENSE +30/−0
- attoparsec-aeson.cabal +41/−0
+ LICENSE view
@@ -0,0 +1,30 @@+Copyright (c) 2011, MailRank, Inc.++All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions+are met:++1. Redistributions of source code must retain the above copyright+ notice, this list of conditions and the following disclaimer.++2. Redistributions in binary form must reproduce the above copyright+ notice, this list of conditions and the following disclaimer in the+ documentation and/or other materials provided with the distribution.++3. Neither the name of the author nor the names of his contributors+ may be used to endorse or promote products derived from this software+ without specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS+OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE+DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,+STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN+ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE+POSSIBILITY OF SUCH DAMAGE.
+ attoparsec-aeson.cabal view
@@ -0,0 +1,41 @@+cabal-version: 1.12+name: attoparsec-aeson+version: 2.1.0.0+synopsis: Parsing of aeson's Value with attoparsec+description:+ Parsing of aeson's Value with attoparsec, originally from aeson.+ .+ This version is an empty package with bounds on @aeson@+ which has "Data.Aeson.Parser" module.+ This way e.g. specifying+ .+ @+ build-depends: aeson >= 1.4.1.0 && \<2.3, attoparsec-aeson >=2.1.0.0 && \<2.3+ @+ .+ will have "Data.Aeson.Parser" available for all @aeson@ versions in range.++license: BSD3+license-file: LICENSE+category: Parsing+copyright:+ (c) 2011-2016 Bryan O'Sullivan+ (c) 2011 MailRank, Inc.++author: Bryan O'Sullivan <bos@serpentine.com>+maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>+stability: experimental+homepage: https://github.com/haskell/aeson+bug-reports: https://github.com/haskell/aeson/issues+build-type: Simple++library+ default-language: Haskell2010+ build-depends:+ aeson >=1.4.1.0 && <2.2+ , base <5++source-repository head+ type: git+ location: git://github.com/haskell/aeson.git+ subdir: attoparsec-aeson