https://github.com/fatemender/bitwuzla-sys
Low-level Rust bindings for the Bitwuzla SMT solver
https://github.com/fatemender/bitwuzla-sys
Last synced: about 2 months ago
JSON representation
Low-level Rust bindings for the Bitwuzla SMT solver
- Host: GitHub
- URL: https://github.com/fatemender/bitwuzla-sys
- Owner: fatemender
- License: mit
- Created: 2021-11-25T11:59:57.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-03T15:32:27.000Z (3 months ago)
- Last Synced: 2025-04-23T09:43:06.103Z (2 months ago)
- Language: Rust
- Size: 32.2 KB
- Stars: 5
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust-formalized-reasoning - bitwuzla-sys - sys) - low-level bindings for the [Bitwuzla](https://bitwuzla.github.io) SMT solver. (Projects / Libraries)
README
[](https://crates.io/crates/bitwuzla-sys)
[](https://docs.rs/bitwuzla-sys)# bitwuzla-sys
This Rust crate provides low-level bindings for the [Bitwuzla] SMT solver,
version 0.7.0.[Bitwuzla]: https://bitwuzla.github.io/
## Installation
### Using shared `bitwuzla` library
Compile `bitwuzla` as a shared library and install it. Then add this crate
to your `Cargo.toml`:```toml
[dependencies]
bitwuzla-sys = "0.7"
```### Using vendored static `bitwuzla` library
This is possible on UNIX-like targets only. Add this crate to your `Cargo.toml`
with the `vendor-cadical` feature enabled:```toml
[dependencies]
bitwuzla-sys = { version = "0.7", features = ["vendor-cadical"] }
```Enabling `vendor-cadical` will automatically build a static `bitwuzla` library
and link against it. Currently this uses the CaDiCaL SAT solver.In order for the build to succeed, you'll need to install some tools on your
build host; for a Debian-based distribution `build-essential`, `git`, `m4`,
and `meson` should be sufficient.## License
This crate is licensed under the [MIT license].
[MIT license]: LICENSE