name: phone-numbers version: 0.1.1 license: BSD3 license-file: LICENSE homepage: https://github.com/christian-marie/phone-numbers bug-reports: https://github.com/christian-marie/phone-numbers category: Data author: Christian Marie maintainer: Christian Marie stability: experimental synopsis: Haskell bindings to the libphonenumber library cabal-version: >= 1.8 build-type: Simple description: Basic phone number parsing, largely incomplete, please submit a pull request or issue if you'd like more exposed. extra-source-files: cbits/*.cc include/*.h README.md changelog.md library hs-source-dirs: lib c-sources: cbits/phone-numbers.cc extra-libraries: phonenumber, stdc++, protobuf include-dirs: include exposed-modules: Data.PhoneNumber Data.PhoneNumber.LowLevel other-modules: Data.PhoneNumber.FFI build-depends: base == 4.*, bytestring build-tools: c2hs ghc-options: -Wall source-repository head type: git location: https://github.com/christian-marie/phone-numbers test-suite test type: exitcode-stdio-1.0 build-depends: base, bytestring, phone-numbers ghc-options: -O2 -rtsopts -threaded -- we want to check thread-safety of our libphonenumber: ghc-options: -with-rtsopts=-N ghc-options: -fno-ignore-asserts hs-source-dirs: tests main-is: Main.hs