Skip to content
concurrency-demo.cabal 1.27 KiB
Newer Older
Yuanle Song's avatar
Yuanle Song committed
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 792999aa718940fdcb794927a15d9250d14f4416b72b547d3be0fcabd1295cc5

name:           concurrency-demo
version:        0.1.0.0
description:    Please see the README on Github at <https://github.com/sylecn/concurrency-demo#readme>
homepage:       https://github.com/sylecn/concurrency-demo#readme
bug-reports:    https://github.com/sylecn/concurrency-demo/issues
author:         Yuanle Song
maintainer:     sylecn@gmail.com
copyright:      Copyright: (c) 2018 Yuanle Song
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/sylecn/concurrency-demo

executable dining1
  main-is: Dining1.hs
  hs-source-dirs:
      src
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , random
  other-modules:
Yuanle Song's avatar
Yuanle Song committed
      Lib
  default-language: Haskell2010

executable dining2
  main-is: Dining2.hs
  hs-source-dirs:
      src
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , random
    , stm
  other-modules:
      Lib
Yuanle Song's avatar
Yuanle Song committed
  default-language: Haskell2010