-- Initial itanium-abi.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: itanium-abi version: 0.1.1.0 synopsis: An implementation of name mangling/demangling for the Itanium ABI license: BSD3 license-file: LICENSE author: Tristan Ravitch maintainer: tristan@nochair.net category: Development build-type: Simple cabal-version: >=1.10 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 library default-language: Haskell2010 hs-source-dirs: src ghc-options: -Wall build-depends: base >= 4 && < 5, boomerang >= 1.4 && < 1.5, text >= 0.11 && < 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