cabal-version: 3.0 name: unicode-data-parser version: 0.2.0 synopsis: Parsers for Unicode Character Database (UCD) files description: This package provides simple [ByteString](https://hackage.haskell.org/package/bytestring/docs/Data-ByteString.html#t:ByteString) parsers for the [Unicode character database](https://www.unicode.org/ucd/) (UCD). See the [Unicode Standard Annex #44](https://www.unicode.org/reports/tr44/) for further details. homepage: https://gitlab.com/Wismill/unicode-data-parser bug-reports: https://gitlab.com/Wismill/unicode-data-parser/-/issues license: BSD-3-Clause license-file: LICENSE author: Pierre Le Marre maintainer: dev@wismill.eu copyright: 2024 (c) Pierre Le Marre category: Data,Text,Unicode build-type: Simple extra-doc-files: CHANGELOG.md README.md tested-with: GHC == 9.8.2 source-repository head type: git location: git://gitlab.com/Wismill/unicode-data-parser.git common compile-options ghc-options: -Wall default-language: GHC2021 common default-extensions default-extensions: BlockArguments, LambdaCase, UnicodeSyntax, PatternSynonyms, ViewPatterns, OverloadedStrings, DerivingStrategies, RecordWildCards, OverloadedRecordDot, DisambiguateRecordFields, DuplicateRecordFields library import: compile-options, default-extensions hs-source-dirs: lib exposed-modules: Unicode.CharacterDatabase.Parser.Common Unicode.CharacterDatabase.Parser.Properties.Defaults Unicode.CharacterDatabase.Parser.Properties.Multiple Unicode.CharacterDatabase.Parser.Properties.Single Unicode.CharacterDatabase.Parser.UnicodeData other-modules: Unicode.CharacterDatabase.Parser.Internal build-depends: base >= 4.14 && < 5, bytestring >= 0.12.0 && < 0.13