-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (34 loc) · 988 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
[package]
name = "patronus"
version = "0.24.0"
edition = "2021"
authors = ["Kevin Laeufer <[email protected]>"]
description = "Hardware bug-finding toolkit."
readme = "Readme.md"
repository = "https://github.com/ekiwi/patron"
homepage = "https://kevinlaeufer.com"
license = "BSD-3-Clause"
keywords = ["RTL", "btor", "model-checking", "SMT", "bit-vector"]
exclude = [".github/", ".gitignore"]
[dependencies]
indexmap = "2.0.0"
codespan-reporting = "0.11.1"
fuzzy-matcher = "0.3.7"
lazy_static = "1.4.0"
easy-smt = "0.2.1"
# used for simulator initialization
rand = { version = "0.8.5", default-features = false }
rand_xoshiro = "0.6.0"
smallvec = { version = "1.x", features = ["union"] }
baa = "0.14.5"
boolean_expression = "0.4.4"
egg = "0.9.5"
rustc-hash = "2.0.0"
regex = "1.11.1"
[dev-dependencies]
clap = { version = "4.4.8", features = ["derive"] }
insta = { version = "1.34.0", features = ["yaml"] }
[profile.dev.package]
insta.opt-level = 3
[profile.release]
debug = true