-
Notifications
You must be signed in to change notification settings - Fork 9
/
inline-rust.cabal
87 lines (77 loc) · 3.11 KB
/
inline-rust.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: inline-rust
version: 0.1.0.0
synopsis: Haskell library for inline rust quasiquotes
description: Inline Rust is a library that lets you write inline Rust code via GHC's
support for quasiquotation.
homepage: https://github.com/harpocrates/inline-rust
license: BSD3
license-file: LICENSE
author: Alec Theriault
maintainer: [email protected]
copyright: (c) 2017 Alec Theriault
stability: alpha
bug-reports: https://github.com/harpocrates/inline-rust/issues
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/harpocrates/inline-rust.git
library
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
exposed-modules: Language.Rust.Inline
Language.Rust.Inline.TH
other-modules: Language.Rust.Inline.Context
Language.Rust.Inline.Context.Prelude
Language.Rust.Inline.Marshal
Language.Rust.Inline.Parser
Language.Rust.Inline.Pretty
Language.Rust.Inline.Internal
Language.Rust.Inline.TH.Storable
Language.Rust.Inline.TH.Utilities
Language.Rust.Inline.TH.ReprC
other-extensions: DeriveDataTypeable
, CPP
, QuasiQuotes
, TemplateHaskell
, GeneralizedNewtypeDeriving
, ForeignFunctionInterface
, ScopedTypeVariables
build-depends: base >=4.9 && <5.0
, language-rust >=0.2.0
, prettyprinter >=1.1
, process >=1.4
, random >=1.0
, transformers >=0.5 && <0.6
, array >=0.5 && <0.6
, template-haskell >=2.13
, filepath >=1.4.0.0
, directory >=1.3.0.0
, bytestring >=0.10
, json >=0.8
test-suite spec
hs-source-dirs: tests
ghc-options: -threaded
if os(windows)
extra-libraries:
advapi32 ws2_32 userenv shell32 gcc_eh pthread
if os(osx)
extra-libraries:
System resolv c m
main-is: Main.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
other-modules: SimpleTypes
, GhcUnboxedTypes
, PointerTypes
, FunctionPointerTypes
, PreludeTypes
, AlgebraicDataTypes
build-depends: base
, inline-rust
, language-rust
, hspec
, ghc-prim