-
Notifications
You must be signed in to change notification settings - Fork 1
/
ion.cabal
67 lines (61 loc) · 2.51 KB
/
ion.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
-- Initial ion.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: ion
version: 1.0.0.0
synopsis: EDSL for concurrent, realtime, embedded programming on top of Ivory
description:
Ion is a Haskell EDSL for concurrent, realtime, embedded programming.
It interfaces with the Ivory EDSL, <http://ivorylang.org/>, to perform
code generation. It supports similar scheduling functionality to Atom
(<https://hackage.haskell.org/package/atom>), and also accomodates
asynchronous programming with continuation-passing style.
Be forewarned that Ion is still heavily experimental. For some
further explanation, see the write-up at HaskellEmbedded,
<https://haskellembedded.github.io/posts/2016-09-23-introducing-ion.html>.
license: BSD3
license-file: LICENSE
author: Chris Hodapp
maintainer: [email protected]
stability: experimental
homepage: https://haskellembedded.github.io/
-- copyright:
category: Language, Embedded
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/HaskellEmbedded/ion
library
exposed-modules: Ivory.Language.Ion
, Ivory.Language.Ion.Base
, Ivory.Language.Ion.Code
, Ivory.Language.Ion.CPS
, Ivory.Language.Ion.Operators
, Ivory.Language.Ion.Schedule
, Ivory.Language.Ion.Util
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <5
, containers
, ivory >= 0.1.0.0
, ivory-backend-c
, mtl
hs-source-dirs: src
default-language: Haskell2010
executable ion_example
main-is: Ivory/Language/Ion/Examples/Example.hs
--ghc-options: -threaded -rtsopts -with-rtsopts=-N
other-modules: Ivory.Language.Ion.Base
, Ivory.Language.Ion.Code
, Ivory.Language.Ion.CPS
, Ivory.Language.Ion.Operators
, Ivory.Language.Ion.Schedule
, Ivory.Language.Ion.Util
build-depends: base
, containers
, ivory
, ivory-backend-c
, mtl
hs-source-dirs: src
default-language: Haskell2010