packages feed

CSPM-Frontend-0.6.8.0: CSPM-Frontend.cabal

Name:                CSPM-Frontend
Version:             0.6.8.0

Synopsis:            A CSP-M parser compatible with FDR-2.91

Description:
  CSP-M is the machine readable syntax of CSP (concurrent sequential processes) as used by
  the formal methods tools FDR, Probe and ProB.
  This Package contains functions for lexing, parsing, renaming and pretty-printing
  CSP-M specifications.
  The parser is (almost) 100% compatible with the FDR-2.91 parser.

License:             BSD3
category:            Language,Formal Methods,Concurrency
License-File:        LICENSE
Author:              Marc Fontaine 2007 - 2011
Maintainer:          Marc Fontaine <fontaine@cs.uni-duesseldorf.de>, me@dobrikov.biz
Homepage:            http://www.stups.uni-duesseldorf.de/~fontaine/csp
Stability:           maintained
Tested-With:         GHC == 7.0.2

cabal-Version:       >= 1.10
build-type: Simple

library
  Build-Depends:
    base >=4.0 && < 5.0
    ,containers >= 0.4 && < 0.5
    ,array >= 0.3 && < 0.4
    ,parsec2 >= 1.0.0 && < 1.1.0
    ,pretty >= 1.0 && < 1.1
    ,mtl (>= 2.0 && < 2.1 ) || (>= 1.1 && < 1.2)
    ,syb >= 0.3 && < 0.4

  Default-Language: Haskell2010
  Other-Extensions: DeriveDataTypeable
  GHC-Options: -funbox-strict-fields -O2 -Wall
  Hs-Source-Dirs:       src
  Exposed-modules:
    Language.CSPM.Frontend
    Language.CSPM.Parser
    Language.CSPM.AST
    Language.CSPM.PrettyPrinter
    Language.CSPM.SrcLoc
    Language.CSPM.Rename
    Language.CSPM.Utils
    Language.CSPM.Token
    Language.CSPM.AstUtils
    Language.CSPM.TokenClasses
    Language.CSPM.LexHelper
  Other-modules:
    Text.ParserCombinators.Parsec.ExprM
    Language.CSPM.Lexer
    Language.CSPM.AlexWrapper