1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Name: zenc
Version: 0.1.2
Synopsis: GHC style name Z-encoding and Z-decoding
Description: Implements GHC's name mangling. This code was taken
directly from the GHC source.
License: BSD3
License-file: LICENSE
Author: GHC Team, Jason Dagit
Maintainer: dagitj@gmail.com
Copyright: GHC HQ
Category: Text
Build-type: Simple
Cabal-version: >=1.10
extra-source-files: README.md
Library
-- Modules exported by the library.
Exposed-modules: Text.Encoding.Z
-- Packages needed in order to build this package.
Build-depends: base >= 3 && <= 5
GHC-options: -O2
default-language: Haskell2010
-- Modules not exported by this package.
-- Other-modules:
-- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
-- Build-tools:
test-suite tests
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules: Text.Encoding.Z
build-depends: base >= 3 && <= 5
build-depends: hedgehog
build-depends: hspec
build-depends: hspec-hedgehog
default-language: Haskell2010
source-repository this
type: git
location: https://github.com/dagit/zenc.git
tag: 0.1.2
|