-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
26 lines (23 loc) · 1.3 KB
/
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
[package]
authors = ["Mikhail Solovev <[email protected]>"]
build = "build.rs"
categories = ["external-ffi-bindings"]
description = "Low-level bindings for the Boolector SMT solver"
documentation = "https://docs.rs/boolector-sys"
edition = "2018"
homepage = "https://github.com/fatemender/boolector-sys"
keywords = ["ffi", "smt"]
license = "MIT"
links = "boolector"
name = "boolector-sys"
readme = "README.md"
repository = "https://github.com/fatemender/boolector-sys"
version = "0.7.2"
[features]
vendor-lgl = ["cc", "cmake", "copy_dir"]
[dependencies]
libc = "0.2.73"
[build-dependencies]
cc = { version = "1.0", optional = true }
cmake = { version = "0.1", optional = true }
copy_dir = { version = "0.1.2", optional = true }