「Rust cargo-edit」cargo add で featuresも指定する

スポンサーリンク

Rustのcargo-editの機能でCargo.tomlにcrateの設定などができます。その際に併せてfeaturesの設定をしたい場合もあります。今回はその方法を解説していきます。

方法

reqwestを追加し併せてfeaturesblockingを追加する例

cargo add reqwest --features="blocking"    

Cargo.toml

~~~~ 省略 ~~~~

[dependencies]
reqwest = { version = "0.11.11", features =["blocking"] }