-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.yaml
167 lines (158 loc) · 4.23 KB
/
package.yaml
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: souffle-haskell
synopsis: Souffle Datalog bindings for Haskell
description: Souffle Datalog bindings for Haskell.
version: 4.0.0
homepage: https://github.com/luc-tielen/souffle-haskell#README.md
license: MIT
author: Luc Tielen
maintainer: [email protected]
copyright: 2022 Luc Tielen
category: Logic Programming, Foreign Binding, Bindings
github: luc-tielen/souffle-haskell
extra-doc-files:
- README.md
- CHANGELOG.md
- LICENSE
extra-source-files:
- cbits/**/*.h
- cbits/*.cpp
- cbits/souffle/LICENSE
dependencies:
- base >= 4.12 && < 5
- text >= 2.0.2 && < 3
- vector <= 1.0
default-extensions:
- DerivingStrategies
- FlexibleContexts
- LambdaCase
- OverloadedStrings
- ScopedTypeVariables
- StandaloneKindSignatures
ghc-options:
- -Wall
- -Weverything
- -Wno-safe
- -Wno-unsafe
- -Wno-implicit-prelude
- -Wno-missed-specializations
- -Wno-all-missed-specializations
- -Wno-missing-import-lists
- -Wno-type-defaults
- -Wno-missing-local-signatures
- -Wno-monomorphism-restriction
- -Wno-prepositive-qualified-module
- -Wno-missing-safe-haskell-mode
- -Wno-operator-whitespace
# - -optP-Wno-nonportable-include-path
- -fhide-source-paths
- -fno-show-valid-hole-fits
- -fno-sort-valid-hole-fits
cxx-options:
- -std=c++17
include-dirs:
- cbits
- cbits/souffle
install-includes:
- souffle/CompiledSouffle.h
- souffle/RamTypes.h
- souffle/RecordTable.h
- souffle/datastructure/ConcurrentFlyweight.h
- souffle/datastructure/ConcurrentInsertOnlyHashMap.h
- souffle/utility/ParallelUtil.h
- souffle/utility/span.h
- souffle/SignalHandler.h
- souffle/SouffleInterface.h
- souffle/SymbolTable.h
- souffle/utility/MiscUtil.h
- souffle/utility/General.h
- souffle/utility/Iteration.h
- souffle/utility/Types.h
- souffle/utility/tinyformat.h
- souffle/utility/StreamUtil.h
- souffle/utility/ContainerUtil.h
- souffle/utility/DynamicCasting.h
- souffle/datastructure/BTreeDelete.h
- souffle/datastructure/BTreeUtil.h
- souffle/utility/CacheUtil.h
- souffle/datastructure/Brie.h
- souffle/datastructure/EquivalenceRelation.h
- souffle/datastructure/LambdaBTree.h
- souffle/datastructure/BTree.h
- souffle/datastructure/PiggyList.h
- souffle/datastructure/UnionFind.h
- souffle/datastructure/Table.h
- souffle/io/IOSystem.h
- souffle/io/ReadStream.h
- souffle/io/SerialisationStream.h
- souffle/utility/StringUtil.h
- souffle/utility/json11.h
- souffle/io/ReadStreamCSV.h
- souffle/utility/FileUtil.h
- souffle/io/gzfstream.h
- souffle/io/ReadStreamJSON.h
- souffle/io/WriteStream.h
- souffle/io/WriteStreamCSV.h
- souffle/io/WriteStreamJSON.h
- souffle/io/ReadStreamSQLite.h
- souffle/io/WriteStreamSQLite.h
- souffle/utility/EvaluatorUtil.h
library:
source-dirs: lib
cxx-sources: cbits/*.cpp
cxx-options:
- -Wall
when:
- condition: os(linux)
extra-libraries: stdc++
generated-other-modules:
- Paths_souffle_haskell
dependencies:
- mtl >= 2.0 && < 3
- deepseq >= 1.4.4 && < 2
- filepath >= 1.4.2 && < 2
- process >= 1.6 && < 2
- bytestring >= 0.10.10 && < 1
- array <= 1.0
- profunctors >= 5.6.2 && < 6
- directory >= 1.3.3 && < 2
- temporary >= 1.3 && < 2
tests:
souffle-haskell-test:
main: test.hs
source-dirs: tests
cxx-sources: tests/fixtures/*.cpp
when:
- condition: os(darwin)
extra-libraries: c++
dependencies:
- hspec >= 2.6.1 && < 3.0.0
- hspec-hedgehog == 0.*
- hedgehog == 1.*
- array <= 1.0
- profunctors >= 5.6.2 && < 6
- directory >= 1.3.3 && < 2
- temporary >= 1.3 && < 2
- souffle-haskell
cxx-options:
- -D__EMBEDDED_SOUFFLE__
ghc-options:
- -Wno-missing-kind-signatures
- -Wno-operator-whitespace
benchmarks:
souffle-haskell-benchmarks:
main: bench.hs
source-dirs: benchmarks
cxx-sources: benchmarks/fixtures/*.cpp
when:
- condition: os(darwin)
extra-libraries: c++
dependencies:
- souffle-haskell
- criterion == 1.*
- deepseq >= 1.4.4 && < 2
cxx-options:
- -D__EMBEDDED_SOUFFLE__
- -std=c++17
- -march=native
ghc-options:
- +RTS -N1 -RTS # Run benchmarks sequentially (parallel is not safe!)