Skip to content

Commit 974f06e

Browse files
bors[bot]Aurel300
andauthored
Merge #1089
1089: Update dependencies (rustc nightly-2022-07-15, viper v-2022-07-01-0736) r=Aurel300 a=viper-admin * [x] Update Viper version to `v-2022-07-01-0736`. * [x] Update rustc version to `nightly-2022-07-15`. * [x] Run `cargo audit` and fix the issues. * [x] Manualy update outdated dependencies (see the list below). * [x] Manualy run `cargo update`. <details><summary>List of direct outdated dependencies:</summary> ``` $ cargo outdated --root-deps-only --workspace info: syncing channel updates for 'nightly-2022-07-15-x86_64-unknown-linux-gnu' info: latest update on 2022-07-15, rust version 1.64.0-nightly (c2f428d2f 2022-07-14) info: downloading component 'cargo' info: downloading component 'clippy' info: downloading component 'llvm-tools-preview' info: downloading component 'rust-std' info: downloading component 'rustc' info: downloading component 'rustc-dev' info: downloading component 'rustfmt' info: installing component 'cargo' info: installing component 'clippy' info: installing component 'llvm-tools-preview' info: installing component 'rust-std' info: installing component 'rustc' info: installing component 'rustc-dev' info: installing component 'rustfmt' Updating git repository `https://github.com/rust-lang/cargo.git` analysis ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- serde 1.0.137 --- 1.0.139 Normal --- prusti ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- regex 1.5.6 --- 1.6.0 Normal --- prusti-common ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- regex 1.5.6 --- 1.6.0 Normal --- serde 1.0.137 --- 1.0.139 Normal --- prusti-launch ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- serde 1.0.137 --- 1.0.139 Normal --- viper ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- serde 1.0.137 --- 1.0.139 Normal --- tokio 1.19.2 --- 1.20.0 Normal --- viper-sys ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- ureq 2.4.0 --- 2.5.0 Build --- vir ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- regex 1.5.6 --- 1.6.0 Normal --- serde 1.0.137 --- 1.0.139 Normal --- prusti-specs ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- serde 1.0.137 --- 1.0.139 Normal --- prusti-interface ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- regex 1.5.6 --- 1.6.0 Normal --- serde 1.0.137 --- 1.0.139 Normal --- prusti-viper ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- backtrace 0.3.65 --- 0.3.66 Normal --- regex 1.5.6 --- 1.6.0 Normal --- serde 1.0.137 --- 1.0.139 Normal --- prusti-server ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- clap 3.2.8 --- 3.2.12 Normal --- serde 1.0.137 --- 1.0.139 Normal --- tokio 1.19.2 --- 1.20.0 Normal --- test-crates ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- clap 3.2.8 --- 3.2.12 Normal --- serde 1.0.137 --- 1.0.139 Normal --- systest ================ Name Project Compat Latest Kind Platform ---- ------- ------ ------ ---- -------- ureq 2.4.0 --- 2.5.0 Build --- ``` </details> `@Aurel300` could you take care of this? Co-authored-by: Aurel Bílý <[email protected]>
2 parents 08a19d6 + cd875f3 commit 974f06e

File tree

29 files changed

+220
-275
lines changed

29 files changed

+220
-275
lines changed

Cargo.lock

+65-61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analysis/src/abstract_interpretation/fixpoint_engine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub trait FixpointEngine<'mir, 'tcx: 'mir> {
8282
self.new_bottom()
8383
};
8484

85-
for &pred_bb in &mir.predecessors()[bb] {
85+
for &pred_bb in &mir.basic_blocks.predecessors()[bb] {
8686
if let Some(map) = p_state.lookup_after_block(pred_bb) {
8787
// map should contain bb, because we ensure that we have a state for every
8888
// successor

0 commit comments

Comments
 (0)