packages feed

context-0.2.0.2: package.yaml

name: context
version: '0.2.0.2'
github: "jship/context"
license: MIT
license-file: LICENSE.md
copyright: 2020 (c) Jason Shipman
author: "Jason Shipman"
maintainer: "Jason Shipman"
synopsis: Thread-indexed, nested contexts
description: |
  Thread-indexed storage around arbitrary context values. The interface supports
  nesting context values per thread, and at any point, the calling thread may
  ask for their current context.
category: Data

extra-source-files:
- CHANGELOG.md
- LICENSE.md
- package.yaml
- README.md

ghc-options:
  - -Wall
  - -fwarn-tabs
  - -Wincomplete-uni-patterns
  - -Wredundant-constraints

library:
  dependencies:
  - base >=4.11.1.0 && <5
  - containers >=0.5.11.0 && <0.7
  - exceptions >=0.10.0 && <0.11
  source-dirs: library

tests:
  context-test-suite:
    source-dirs: test-suite
    main: Driver.hs
    build-tools:
    - hspec-discover
    dependencies:
    - async
    - base
    - ghc-prim
    - hspec
    - context
    ghc-options:
    - -threaded
    - -with-rtsopts=-N