generated from tweag/project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmtlib-backends.cabal
41 lines (34 loc) · 1.17 KB
/
smtlib-backends.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
name: smtlib-backends
version: 0.4
synopsis:
Low-level functions for SMT-LIB-based interaction with SMT solvers.
description:
This library provides an extensible interface for interacting with SMT solvers
using SMT-LIB. The smtlib-backends-process package provides a backend that
runs solvers as external processes, and the smtlib-backends-z3 package
provides a backend that uses inlined calls to Z3's C API.
license: MIT
license-file: LICENSE
author: Quentin Aristote
maintainer:
facundo.dominguez@tweag.io, gabriel.hondet@tweag.io, mathieu.montin@tweag.io
build-type: Simple
category: SMT
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/tweag/smtlib-backends
source-repository this
type: git
location: https://github.com/tweag/smtlib-backends
tag: 0.3
library
hs-source-dirs: src
ghc-options: -Wall -Wunused-packages
exposed-modules: SMTLIB.Backends
other-extensions: Safe
build-depends:
base >=4.14 && <4.22
, bytestring >=0.10.12 && <0.13
default-language: Haskell2010