forked from facebookincubator/hsthrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mangle.cabal
57 lines (51 loc) · 1.63 KB
/
mangle.cabal
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
47
48
49
50
51
52
53
54
55
56
57
cabal-version: 3.6
-- Copyright (c) Facebook, Inc. and its affiliates.
name: mangle
version: 0.1.0.0
synopsis: Convert C++ type signatures to their mangled form
homepage: https://github.com/facebookincubator/hsthrift
bug-reports: https://github.com/facebookincubator/hsthrift/issues
license: BSD-3-Clause
license-file: LICENSE
author: Facebook, Inc.
maintainer: [email protected]
copyright: (c) Facebook, All Rights Reserved
category: FFI
build-type: Simple
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/facebookincubator/hsthrift.git
library
exposed-modules: Mangle, Mangle.TH
default-extensions: LambdaCase, GeneralizedNewtypeDeriving
build-depends:
base >=4.11.1 && <4.15,
containers >=0.5.11.0 && <0.7,
parsec ^>=3.1.13.0,
template-haskell >=2.13 && <2.17
default-language: Haskell2010
executable mangle
main-is: Main.hs
other-modules: Mangle
default-extensions: LambdaCase, GeneralizedNewtypeDeriving
build-depends:
base >=4.11.1 && <4.15,
containers >=0.5.11 && <0.7,
parsec ^>=3.1.13.0,
template-haskell >=2.13 && <2.17
default-language: Haskell2010
test-suite mangle-test
type: exitcode-stdio-1.0
hs-source-dirs: tests
default-language: Haskell2010
default-extensions: LambdaCase
main-is: Test.hs
build-depends:
base,
fb-stubs,
hspec,
hspec-contrib,
mangle,
HUnit ^>= 1.6.1
ghc-options: -threaded -main-is Test