我试图制作“Hello World'在Rust中使用this tutorial,但构建命令有点冗长:
cargo +nightly build --target wasm32-unknown-unknown --release
是否可以设置cargo build
的默认目标?
答案 0 :(得分:11)
我想您可以使用货物配置文件为您的项目指定默认目标 - 三分法:https://doc.rust-lang.org/cargo/reference/config.html
在项目的根中创建一个.cargo
目录和一个config
文件,其中包含以下内容:
[build]
target = "wasm32-unknown-unknown"
答案 1 :(得分:4)
如the Cargo documentation中所列,您可以创建.cargo/config
并指定目标:
[build]
target = "my-custom-target"