forked from esoeylemez/rapid
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrapid.cabal
More file actions
54 lines (43 loc) · 1.64 KB
/
rapid.cabal
File metadata and controls
54 lines (43 loc) · 1.64 KB
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
name: rapid
version: 0.1.5.4
category: Development
synopsis: Hot reload and reload-surviving values with GHCi
maintainer: Markus Läll <markus.l2ll@gmail.com>
author: Ertugrul Söylemez <esz@posteo.de>
copyright: Copyright 2018 Ertugrul Söylemez
homepage: https://github.com/haskell-rapid/rapid
bug-reports: https://github.com/haskell-rapid/rapid
license: BSD3
license-file: LICENSE
description: Features:
.
- Reload individual components of your application as
you iterate: improves development experience for
long-running applications such as (web) servers or
user interfaces by keeping the app running in the
background and allowes reloading components after code
changes.
.
- Reuse expensive resources across reloads: useful in
batch-style programs to compute/aquire a resource
once, then reuse it across code reloads.
.
Technically, this package is a safe and convenient wrapper around
<https://hackage.haskell.org/package/foreign-store foreign-store>.
build-type: Simple
cabal-version: >= 1.10
extra-source-files: CHANGELOG.md README.md
source-repository head
type: git
location: https://github.com/haskell-rapid/rapid
library
build-depends:
async >= 2.1 && < 3,
base >= 4.8 && < 5,
containers >= 0.5 && < 1,
foreign-store == 0.2.*,
stm >= 2.4 && < 3
default-language: Haskell2010
ghc-options: -W
exposed-modules:
Rapid