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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
cabal-version: >=1.10
name: copilot-libraries
version: 4.5
synopsis: Libraries for the Copilot language.
description:
Libraries for the Copilot language.
.
Copilot is a stream (i.e., infinite lists) domain-specific language (DSL) in
Haskell that compiles into embedded C. Copilot contains an interpreter,
multiple back-end compilers, and other verification tools.
.
A tutorial, examples, and other information are available at
<https://copilot-language.github.io>.
license: BSD3
license-file: LICENSE
author: Frank Dedden, Lee Pike, Robin Morisset, Alwyn Goodloe,
Sebastian Niller, Nis Nordby Wegmann, Ivan Perez
maintainer: Ivan Perez <ivan.perezdominguez@nasa.gov>
homepage: https://copilot-language.github.io
bug-reports: https://github.com/Copilot-Language/copilot/issues
stability: Experimental
category: Language, Embedded
build-type: Simple
extra-source-files: README.md, CHANGELOG
x-curation: uncurated
source-repository head
type: git
location: https://github.com/Copilot-Language/copilot.git
subdir: copilot-libraries
library
default-language: Haskell2010
hs-source-dirs: src
build-depends: base >= 4.9 && < 5
, containers >= 0.4 && < 0.8
, mtl >= 2.0 && < 2.4
, parsec >= 2.0 && < 3.2
, copilot-language >= 4.5 && < 4.6
exposed-modules:
Copilot.Library.Libraries
, Copilot.Library.Clocks
, Copilot.Library.LTL
, Copilot.Library.PTLTL
, Copilot.Library.Statistics
, Copilot.Library.RegExp
, Copilot.Library.Utils
, Copilot.Library.Voting
, Copilot.Library.Stacks
, Copilot.Library.MTL
ghc-options:
-Wall
test-suite unit-tests
type:
exitcode-stdio-1.0
main-is:
Main.hs
other-modules:
Test.Copilot.Library.PTLTL
Test.Extra
build-depends:
base
, QuickCheck
, test-framework
, test-framework-quickcheck2
, copilot-interpreter
, copilot-language
, copilot-libraries
, copilot-theorem
hs-source-dirs:
tests
default-language:
Haskell2010
ghc-options:
-Wall
|