Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msakai/bytestring-encoding
https://github.com/msakai/bytestring-encoding
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/msakai/bytestring-encoding
- Owner: msakai
- License: bsd-3-clause
- Created: 2018-08-13T15:51:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-02T17:08:30.000Z (12 months ago)
- Last Synced: 2024-08-09T23:47:12.521Z (5 months ago)
- Language: Haskell
- Size: 46.9 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# bytestring-encoding: ByteString ↔ Text converter based on GHC.IO.Encoding
[![Build Status](https://github.com/msakai/bytestring-encoding/workflows/build/badge.svg)](https://github.com/msakai/bytestring-encoding/actions)
[![Coverage Status](https://coveralls.io/repos/github/msakai/bytestring-encoding/badge.svg?branch=master)](https://coveralls.io/github/msakai/bytestring-encoding?branch=master)
[![Hackage](https://img.shields.io/hackage/v/bytestring-encoding.svg)](https://hackage.haskell.org/package/bytestring-encoding)
[![Hackage Deps](https://img.shields.io/hackage-deps/v/bytestring-encoding.svg)](https://packdeps.haskellers.com/feed?needle=bytestring-encoding)
[![License: BSD-3-Clause](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)This library provides converter between `ByteString` and `Text` based
on `GHC.IO.Encoding`.
Compared to the [text-icu](http://hackage.haskell.org/package/text-icu)
package, it has only limited feature and is platform dependent, but is
light-weight and consistent with conversion by `System.IO`.## Limitations and Known issues
* There are some cases that conversion can produce incomplete results due to the problem of `GHC.IO.Encoding` API.
see https://gitlab.haskell.org/ghc/ghc/-/issues/15553 for details.