-
Notifications
You must be signed in to change notification settings - Fork 12
/
syfco.cabal
114 lines (107 loc) · 2.84 KB
/
syfco.cabal
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
cabal-version: >=1.10
name: syfco
version: 1.2.1.2
license: OtherLicense
license-file: LICENSE
maintainer: Felix Klein <[email protected]>
author: Felix Klein <[email protected]>
stability: stable
synopsis: Synthesis Format Conversion Tool / Library
description:
Library and tool for reading, manipulating and transforming synthesis specifications.
category: SyntComp
build-type: Simple
extra-source-files: README.md
Test-Suite syfco-testsuite
type: exitcode-stdio-1.0
hs-source-dirs: test
Main-is: Spec.hs
Build-depends: base
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/reactive-systems/syfco
library
exposed-modules: Syfco
hs-source-dirs: src/lib
other-modules:
Utils
Config
Simplify
Reader
Reader.Data
Reader.Error
Reader.Sugar
Reader.InferType
Reader.Abstraction
Reader.Bindings
Reader.Parser
Reader.Parser.Info
Reader.Parser.Utils
Reader.Parser.Expression
Reader.Parser.Global
Reader.Parser.Component
Reader.Parser.Data
Writer
Writer.Error
Writer.Utils
Writer.Data
Writer.Eval
Writer.Formats
Writer.Formats.Lily
Writer.Formats.Wring
Writer.Formats.Utf8
Writer.Formats.Psl
Writer.Formats.Smv
Writer.Formats.SmvDecomp
Writer.Formats.SlugsIn
Writer.Formats.Ltlxba
Writer.Formats.LtlxbaF
Writer.Formats.LtlxbaDecomp
Writer.Formats.Ltl
Writer.Formats.Full
Writer.Formats.Unbeast
Writer.Formats.Acacia
Writer.Formats.Promela
Writer.Formats.Bosy
Writer.Formats.Basic
Writer.Formats.AcaciaSpecs
Writer.Formats.Slugs
Writer.Formats.Rabinizer
Detection
Detection.GeneralizedReactivity
Data.Info
Data.Error
Data.StringMap
Data.Enum
Data.Types
Data.Expression
Data.Specification
Data.SymbolTable
Data.LTL
Data.Binding
Paths_syfco
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing
build-depends:
base <4.16,
array <0.6,
containers <0.7,
mtl <2.3,
parsec <3.2,
transformers <0.6,
convertible <1.2
executable syfco
main-is: Main.hs
hs-source-dirs: src/syfco
other-modules:
Arguments
Info
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing
build-depends:
syfco,
base <4.16,
directory <1.4,
parsec <3.2,
convertible <1.2