Skip to content

Commit

Permalink
move tools into their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Dec 4, 2024
1 parent c7c23c0 commit b3f7cc9
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = [ "bmc","patronus", "patronus-egraphs", "patronus-egraphs-cond-synth", "sim"]
members = ["patronus", "patronus-egraphs", "tools/bmc", "tools/egraphs-cond-synth", "tools/sim"]

[workspace.package]
edition = "2021"
Expand All @@ -15,6 +15,7 @@ rustc-hash = "2.x"
baa = "0.14.5"
egg = "0.9.5"
clap = { version = "4.x", features = ["derive"] }
patronus = {path = "patronus"}

# speed up execution of tests using insta
[profile.dev.package]
Expand Down
2 changes: 1 addition & 1 deletion bmc/Cargo.toml → tools/bmc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ license.workspace = true
rust-version.workspace = true

[dependencies]
patronus = { path = "../patronus" }
patronus.workspace = true
clap.workspace = true
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license.workspace = true
rust-version.workspace = true

[dependencies]
patronus = { path = "../patronus" }
patronus-egraphs = { path = "../patronus-egraphs"}
patronus.workspace = true
patronus-egraphs = { path = "../../patronus-egraphs"}
egg.workspace = true
clap.workspace = true
File renamed without changes.
2 changes: 1 addition & 1 deletion sim/Cargo.toml → tools/sim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license.workspace = true
rust-version.workspace = true

[dependencies]
patronus = { path = "../patronus" }
patronus.workspace = true
clap.workspace = true
rustc-hash.workspace = true
baa.workspace = true
File renamed without changes.

0 comments on commit b3f7cc9

Please sign in to comment.