Skip to content

Commit

Permalink
Update from Hackage at 2021-02-21T01:10:35Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Feb 21, 2021
1 parent 1bba5ee commit 80305ba
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
85 changes: 85 additions & 0 deletions drama/0.2.0.0/drama.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
cabal-version: 3.0

name: drama
version: 0.2.0.0
synopsis: Simple actor library for Haskell
description: Simple actor library for Haskell
category: Concurrency
author: Evan Relf <evan@evanrelf.com>
maintainer: Evan Relf <evan@evanrelf.com>
homepage: https://github.com/evanrelf/drama
license: BSD-3-Clause
copyright: 2021 Evan Relf
tested-with: GHC == 8.6.5, GHC == 8.10.3

license-file: LICENSE
extra-source-files:
CHANGELOG.md
LICENSE
README.md
examples/*.hs


common common
build-depends: base >= 4.12 && < 5.0
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Werror=incomplete-record-updates
-Werror=incomplete-uni-patterns
-Werror=missing-fields
-Werror=partial-fields
-Widentities
-Wmissing-home-modules
-Wredundant-constraints
-fshow-warning-groups


common executable
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N


common stan
if impl(ghc >= 8.8)
ghc-options:
-fwrite-ide-info
-hiedir=.hie


library
import: common, stan
hs-source-dirs: src
build-depends:
, ki ^>= 0.2.0.1
, transformers >= 0.5.6.2 && < 1.0
, unagi-chan ^>= 0.4.1.3
exposed-modules:
, Drama
, Drama.Internal
, Drama.Reexports


benchmark bench
import: common, stan
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Main.hs
build-depends:
, criterion ^>= 1.5.9.0
, drama


executable example-shared-resource
import: common, executable, stan
main-is: examples/shared-resource.hs
build-depends: drama


executable example-workers
import: common, executable, stan
main-is: examples/workers.hs
build-depends: drama
1 change: 1 addition & 0 deletions drama/0.2.0.0/drama.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"420af15fd68e1d4178002cd76efbe098","Skein512_512":"8b944c726f00dd544a70959ffe01c2364e6e7fa8780a5916a1f9afdb545cb971b1788f028da76963e3d5bc52545924b79768049a9e1c3adf59b2f511eb7c883e","SHA1":"b04da0c6f40e0cc84271845c4a1010a0c659a045","SHA512":"2c150a233e28257dbcc40f46237b5b69f46e496ea9842bce524b672e5d212d2cd26a6d44080b120eb7dd7b50a4d4aa7f70b897f31481ccc91d8996d84edbd2b3","SHA256":"228cf8e9e6079e1a1e74625c396fd37f41ade1f260588c05937b4510ddd97401"},"package-locations":["https://hackage.haskell.org/package/drama-0.2.0.0/drama-0.2.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/drama-0.2.0.0.tar.gz"],"package-size":6652}

0 comments on commit 80305ba

Please sign in to comment.