#Rust
## 事象
たとえば[[anyhow]]を`use`すると以下のようなエラーになる。
```console
unresolved import `anyhow` E0432 use of undeclared crate or module `anyhow`
```
ソースコードは以下。
```rust
use anyhow::Result;
```
## 原因
[[Cargo.toml]]で[[dependencies]]に書くべきところ、[[dev-dependencies]]に記載していた。
## 対策
[[dependencies]]に移動する。
```diff
[dependencies]
+ anyhow = "1.0.56"
[dev-dependencies]
- anyhow = "1.0.56"
```