name: ascii-string version: 1 synopsis: Compact representation of ASCII strings description: ASCII strings stored using just 7 bits per character. Compared to ByteString, this saves you a whole byte per 8 characters. homepage: https://github.com/metrix-ai/ascii-string bug-reports: https://github.com/metrix-ai/ascii-string/issues author: Nikita Volkov maintainer: Metrix.AI Ninjas copyright: (c) 2018, Metrix.AI license: MIT license-file: LICENSE build-type: Simple cabal-version: >=1.10 library hs-source-dirs: library default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 exposed-modules: AsciiString other-modules: AsciiString.Prelude AsciiString.FoldMs build-depends: base >=4.7 && <5, bytestring >=0.10 && <0.11, cereal >=0.5.5 && <0.6, deferred-folds >=0.6.11 && <0.7, foldl >=1.4 && <2, hashable >=1.2.7 && <2, primitive >=0.6.4 && <0.7, primitive-extras >=0.6.3 && <0.7 test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 main-is: Main.hs build-depends: ascii-string, cereal, QuickCheck >=2.8.1 && <3, quickcheck-instances >=0.3.11 && <0.4, rerebase <2, tasty >=0.12 && <2, tasty-hunit >=0.9 && <0.11, tasty-quickcheck >=0.9 && <0.11