File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ bytesize = "1.0"
22
22
cargo-platform = { path = " crates/cargo-platform" , version = " 0.1.2" }
23
23
cargo-util = { path = " crates/cargo-util" , version = " 0.2.3" }
24
24
clap = " 4.1.3"
25
- crates-io = { path = " crates/crates-io" , version = " 0.35.1 " }
25
+ crates-io = { path = " crates/crates-io" , version = " 0.36.0 " }
26
26
curl = { version = " 0.4.44" , features = [" http2" ] }
27
27
curl-sys = " 0.4.59"
28
28
env_logger = " 0.10.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " crates-io"
3
- version = " 0.35.1 "
3
+ version = " 0.36.0 "
4
4
edition = " 2021"
5
5
license = " MIT OR Apache-2.0"
6
6
repository = " https://github.com/rust-lang/cargo"
Original file line number Diff line number Diff line change @@ -702,7 +702,7 @@ impl Trait for Foo {}
702
702
703
703
fn main() {
704
704
let x = Foo;
705
- x.foo(1); // Error: this function takes 0 arguments
705
+ x.foo(1); // Error: this method takes 0 arguments but 1 argument was supplied
706
706
}
707
707
```
708
708
You can’t perform that action at this time.
0 commit comments