0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Rust – Caused by: this virtual manifest specifies a [dependencies] section, which is not allowed

Posted at

cargo run コマンドでエラーが起きていた。
Rustチュートリアルの導入をすっ飛ばして Cargo.toml の中身を dependencies だけにしていたせいだった。

Cargo.toml
[dependencies]
ferris-says = "0.2"

以下に修正して実行に成功した。

Cargo.toml
[package]
name = "hello-rust"
version = "0.1.0"
edition = "2021"

[dependencies]
ferris-says = "0.2"

チュートリアル

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?