Skip to content

Commit 5fa4c63

Browse files
committed
Fix nit and cargo.lock
1 parent a24df5b commit 5fa4c63

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Cargo.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ dependencies = [
494494
"chalk-ir",
495495
"chalk-macros",
496496
"chalk-rust-ir",
497-
"ena",
497+
"ena 0.13.1",
498498
"itertools 0.9.0",
499499
"petgraph",
500500
"rustc-hash",

src/librustc_traits/chalk/lowering.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Contains the logic to lower rustc types into Chalk types
22
//!
3-
//! In many there is a 1:1 relationship between a rustc type and a Chalk type.
3+
//! In many cases there is a 1:1 relationship between a rustc type and a Chalk type.
44
//! For example, a `SubstsRef` maps almost directly to a `Substitution`. In some
55
//! other cases, such as `Param`s, there is no Chalk type, so we have to handle
66
//! accordingly.

src/tools/clippy/util/dev

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
CARGO_TARGET_DIR=$(pwd)/target/
3+
export CARGO_TARGET_DIR
4+
5+
echo 'Deprecated! `util/dev` usage is deprecated, please use `cargo dev` instead.'
6+
7+
cd clippy_dev && cargo run -- "$@"

0 commit comments

Comments
 (0)