forked from haskell/aeson
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request haskell#1031 from haskell/integer-conversion
Use integer-conversion
- Loading branch information
Showing
7 changed files
with
58 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,51 @@ | ||
name: attoparsec-iso8601 | ||
version: 1.1.0.1 | ||
synopsis: Parsing of ISO 8601 dates, originally from aeson | ||
description: Parsing of ISO 8601 dates, originally from aeson. | ||
license: BSD3 | ||
license-file: LICENSE | ||
category: Parsing | ||
copyright: (c) 2011-2016 Bryan O'Sullivan | ||
(c) 2011 MailRank, Inc. | ||
author: Bryan O'Sullivan <[email protected]> | ||
maintainer: Adam Bergmark <[email protected]> | ||
stability: experimental | ||
cabal-version: >=1.10 | ||
homepage: https://github.com/haskell/aeson | ||
bug-reports: https://github.com/haskell/aeson/issues | ||
build-type: Simple | ||
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC ==9.2.8, GHC==9.4.5, GHC ==9.6.2 | ||
name: attoparsec-iso8601 | ||
version: 1.1.0.1 | ||
synopsis: Parsing of ISO 8601 dates, originally from aeson | ||
description: Parsing of ISO 8601 dates, originally from aeson. | ||
license: BSD3 | ||
license-file: LICENSE | ||
category: Parsing | ||
copyright: | ||
(c) 2011-2016 Bryan O'Sullivan | ||
(c) 2011 MailRank, Inc. | ||
|
||
author: Bryan O'Sullivan <[email protected]> | ||
maintainer: Adam Bergmark <[email protected]> | ||
stability: experimental | ||
cabal-version: >=1.10 | ||
homepage: https://github.com/haskell/aeson | ||
bug-reports: https://github.com/haskell/aeson/issues | ||
build-type: Simple | ||
tested-with: | ||
GHC ==8.2.2 | ||
|| ==8.4.4 | ||
|| ==8.6.5 | ||
|| ==8.8.4 | ||
|| ==8.10.7 | ||
|| ==9.0.2 | ||
|| ==9.2.8 | ||
|| ==9.4.5 | ||
|| ==9.6.2 | ||
|
||
extra-source-files: | ||
README.md | ||
changelog.md | ||
README.md | ||
|
||
library | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
exposed-modules: | ||
Data.Attoparsec.Time.Internal | ||
Data.Attoparsec.Time | ||
Data.Attoparsec.Time.Internal | ||
|
||
build-depends: | ||
attoparsec >= 0.14.2 && < 0.15, | ||
base >= 4.10.0.0 && < 5, | ||
time-compat >= 1.9.4 && < 1.10, | ||
text >= 1.2.3.0 && < 1.3.0.0 || >= 2.0 && <2.1, | ||
time >= 1.6.0.1 && < 1.13 | ||
attoparsec >=0.14.2 && <0.15 | ||
, base >=4.10.0.0 && <5 | ||
, integer-conversion >=0.1 && <0.2 | ||
, text >=1.2.3.0 && <1.3.0.0 || >=2.0 && <2.1 | ||
, time >=1.6.0.1 && <1.13 | ||
, time-compat >=1.9.4 && <1.10 | ||
|
||
source-repository head | ||
type: git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters