-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lift requirement of having the
prusti
feature enabled (#1146)
* Lift requirement to enable `prusti` feature * Do `prusti-contracts` dependency check prior to `cargo verify` * Minimise changes * Reorganise crates * Revert `22d8c005624510779f3b6566246e0c1566bd672a` * fmt fix * Implement discussed changes * Update expected stderr * Don't run polonius on impure no_verify fns * Merge * Remove test-crates invalid dependency (cannot dep on bin crate) * Correct doc * Re-add dependencies to test-crates * Clarify how providing flags in multi-crate projects works * Update "Quantifier_Instantiations" -> "QI" * Change how bodies (with facts) are loaded * Add requirement that `prusti-contracts` isn't a subdir * Enable Polonius again for `verify` crates * Review changes * Add note on re-verification
- Loading branch information
1 parent
e9db04c
commit 0efcb86
Showing
84 changed files
with
689 additions
and
932 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[unstable] | ||
bindeps = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,9 @@ core | |
report.csv | ||
*.profraw | ||
|
||
*.lock | ||
!/Cargo.lock | ||
|
||
.workspaces/ | ||
viper_tools/ | ||
prusti_tools/ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ authors = ["Vytautas Astrauskas <[email protected]>"] | |
edition = "2021" | ||
|
||
[build-dependencies] | ||
prusti-launch = { path = "../prusti-launch" } | ||
|
||
[features] | ||
prusti-contracts-dep = [] | ||
prusti-utils = { path = "../prusti-utils" } | ||
prusti = { path = "../prusti", artifact = "bin" } | ||
prusti-launch = { path = "../prusti-launch", artifact = "bin" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.