itanium-abi-0.1.3: itanium-abi.cabal
-- Initial itanium-abi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: itanium-abi
version: 0.1.3
synopsis: An implementation of name mangling/demangling for the Itanium ABI
license: BSD3
license-file: LICENSE
author: Tristan Ravitch
maintainer: tristan@ravit.ch
category: Development
build-type: Simple
cabal-version: 1.18
tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4
description: Currently supports everything in the standard but templates
and C++11. Support for these will be added. Includes a name
mangler, demangler, and pretty printer.
-- copyright:
extra-source-files: tests/test-cases.txt
extra-doc-files: CHANGELOG.md
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-depends: base >= 4 && < 5,
boomerang >= 1.4.5.6 && < 1.5,
exceptions >= 0.10 && < 0.11,
text >= 0.11 && < 2.2,
transformers,
unordered-containers >= 0.2.3.0 && < 0.3
exposed-modules: ABI.Itanium
other-modules: ABI.Itanium.Types,
ABI.Itanium.Pretty
test-suite DemangleTests
default-language: Haskell2010
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: DemangleTests.hs
build-depends: itanium-abi, base > 3 && < 5, process,
test-framework, test-framework-hunit, HUnit
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/travitch/itanium-abi