binary-ext 2.0.3 → 2.0.4
raw patch · 17 files changed
+33/−19 lines, 17 filesdep ~mtl
Dependency ranges changed: mtl
Files
- binary-ext.cabal +2/−2
- src/Control/Monad/Error/Map.hs +1/−1
- src/Data/Conduit/Parsers.hs +16/−0
- src/Data/Conduit/Parsers/Binary.hs +1/−1
- src/Data/Conduit/Parsers/Binary/Get.hs +1/−1
- src/Data/Conduit/Parsers/Binary/Put.hs +1/−1
- src/Data/Conduit/Parsers/GetC.hs +1/−1
- src/Data/Conduit/Parsers/PutS.hs +1/−1
- src/Data/Conduit/Parsers/Text.hs +1/−1
- src/Data/Conduit/Parsers/Text/Gen.hs +1/−1
- src/Data/Conduit/Parsers/Text/Parser.hs +1/−1
- src/Data/Conduit/Parsers/Text/TextOffset.hs +1/−1
- test/Data/Conduit/Parsers/Binary/Get/Spec.hs +1/−1
- test/Data/Conduit/Parsers/Binary/Put/Spec.hs +1/−1
- test/Data/Conduit/Parsers/Text/Gen/Spec.hs +1/−3
- test/Data/Conduit/Parsers/Text/Parser/Spec.hs +1/−1
- test/Spec.hs +1/−1
binary-ext.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: d0c705300121f5852980c8cc9896381403dcb6cab277c11656c7efdf7b7c1b0a+-- hash: 5e878d5ddd16de412deb40f8158ec6551bb62df85335c23687a79ee87c98423a name: binary-ext-version: 2.0.3+version: 2.0.4 synopsis: An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package. description: An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package. category: Data, Parsing
src/Control/Monad/Error/Map.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers.hs view
@@ -1,3 +1,19 @@+--+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com>+--+-- Licensed under the Apache License, Version 2.0 (the "License");+-- you may not use this file except in compliance with the License.+-- You may obtain a copy of the License at+--+-- http://www.apache.org/licenses/LICENSE-2.0+--+-- Unless required by applicable law or agreed to in writing, software+-- distributed under the License is distributed on an "AS IS" BASIS,+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.+-- See the License for the specific language governing permissions and+-- limitations under the License.+--+ module Data.Conduit.Parsers ( choice , count
src/Data/Conduit/Parsers/Binary.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/Binary/Get.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/Binary/Put.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/GetC.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/PutS.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/Text.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/Text/Gen.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/Text/Parser.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
src/Data/Conduit/Parsers/Text/TextOffset.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
test/Data/Conduit/Parsers/Binary/Get/Spec.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
test/Data/Conduit/Parsers/Binary/Put/Spec.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
test/Data/Conduit/Parsers/Text/Gen/Spec.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.@@ -20,9 +20,7 @@ import Data.Conduit hiding (ConduitM) import qualified Data.Conduit.Combinators as N-import Data.Functor.Identity import Test.HUnit.Base hiding (Label)-import Data.Conduit.Parsers.Binary.Put hiding (runPut) import Data.Conduit.Parsers.Text.Gen tests :: Test
test/Data/Conduit/Parsers/Text/Parser/Spec.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.
test/Spec.hs view
@@ -1,5 +1,5 @@ ----- Copyright 2017 Warlock <internalmike@gmail.com>+-- Copyright 2017, 2018 Warlock <internalmike@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License.