-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (29 loc) · 907 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
[workspace]
resolver = "2"
members = ["patronus", "patronus-egraphs", "patronus-dse", "tools/bmc", "tools/egraphs-cond-synth", "tools/sim", "tools/simplify"]
[workspace.package]
edition = "2021"
authors = ["Kevin Laeufer <[email protected]>"]
repository = "https://github.com/cucapra/patronus"
readme = "Readme.md"
license = "BSD-3-Clause"
rust-version = "1.73.0"
[workspace.dependencies]
rustc-hash = "2.x"
baa = "0.16.0"
egg = "0.9.5"
regex = "1.11.1"
boolean_expression = "0.4.4"
clap = { version = "4.x", features = ["derive"] }
patronus = {path = "patronus"}
thiserror = "2.0.6"
# speed up execution of tests using insta
[profile.dev.package]
insta.opt-level = 3
# include debug information for profiling
[profile.release]
debug = true
# for samply: https://github.com/mstange/samply/?tab=readme-ov-file#turn-on-debug-info-for-full-stacks
[profile.profiling]
inherits = "release"
debug = true