./converters/hs-base16-bytestring, Fast base16 (hex) encoding and decoding for ByteStrings

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.0.2.0nb3, Package name: hs-base16-bytestring-1.0.2.0nb3, Maintainer: pho

Fast and efficient encoding and decoding of base16-encoded strings.


Required to run:
[lang/ghc88]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 7.05 KB

Version history: (Expand)


CVS history: (Expand)


   2022-02-26 04:58:36 by Masatake Daimon | Files touched by this commit (872)
Log message:
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk
   2022-02-12 09:51:00 by Masatake Daimon | Files touched by this commit (575)
Log message:
revbump after changing the default Haskell compiler
   2022-02-11 13:53:20 by Masatake Daimon | Files touched by this commit (3)
Log message:
Update to base16-bytestring-1.0.2.0

1.0.2.0
    Support sized primitive types in GHC 9.2 (#16 - thanks Bodigrim!)
   2022-01-18 03:48:33 by Masatake Daimon | Files touched by this commit (541)
Log message:
Bump packages that depends on GHC
   2021-10-26 12:06:54 by Nia Alarie | Files touched by this commit (150)
Log message:
converters: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes
   2021-10-07 15:29:13 by Nia Alarie | Files touched by this commit (150)
Log message:
converters: Remove SHA1 hashes for distfiles
   2021-05-03 21:01:21 by Masatake Daimon | Files touched by this commit (475)
Log message:
*: Bump PKGREVISION for ghc-9.0.1
   2021-04-23 10:59:49 by Masatake Daimon | Files touched by this commit (4)
Log message:
Update to base16-bytestring-1.0.1.0

1.0.1.0
* Backwards-compatible support for bytestring ^>= 0.11 (#15)

1.0.0.0
* Merged omnibus PR doing a variety of things in (#10):
  - Improves performance by 3-4x for encode, 4-5x for decode.
  - The decode signature returning the tuple and actually returns an
    error message with offset. The signature will now be ByteString ->
    Either String ByteString.
  - Actually tests using the test vectors defined in the RFC, and uses
    property tests to ensure invariants hold.
  - Adds lenient decoders to the API
  - Adds -XTrustworthy annotations to the relevant exposed modules
  - Rewrites the haddocks to be more up to date and fancy-styled.
  - Adds benchmarks to the .cabal file so they can be run at toplevel,
    and make them better.
  - Bumps the Cabal version to 1.12

Because of the breadth of this change, we are calling this a new epoch
for the base16-bytestring library. Hence, the version 1.0.0.0.

0.1.1.7
- Fix some bugs in lazy decoding (#8).