-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
40 lines (33 loc) · 921 Bytes
/
Cargo.toml
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
[package]
name = "rsmt2"
version = "0.16.2"
authors = ["Adrien Champion <adrien.champion@email.com>"]
description = "Wrapper for SMT-LIB 2 compliant SMT solvers."
documentation = "https://docs.rs/rsmt2"
homepage = "https://github.com/kino-mc/rsmt2"
repository = "https://github.com/kino-mc/rsmt2"
readme = "README.md"
categories = ["science"]
keywords = ["SMT", "SAT", "satisfiability", "solver", "SMT-LIB"]
license = "MIT/Apache-2.0"
edition = "2018"
[[example]]
name = "custom_cmd"
test = true
[[example]]
name = "adt"
test = true
[badges]
travis-ci = { repository = "kino-mc/rsmt2", service = "github" }
appveyor = { repository = "kino-mc/rsmt2" }
codecov = { repository = "kino-mc/rsmt2", service = "github" }
[dependencies]
error-chain = "^0.12"
[dev-dependencies]
clap = "^3.2"
[features]
default = []
examples = []
[package.metadata.docs.rs]
# Features to pass to Cargo (default: [])
features = ["examples"]