Rust에서 라이브 리로딩
"rust hot reloading"의 빠른 Google에서 녹 상자cargo-watch를 소개했습니다. 지침
cargo install cargo-watch
에 따라 설치했습니다.거기에서 작업 중인 녹 프로젝트로 이동하여 명령줄의 프로젝트 루트에서 다음을 실행했습니다.
cargo watch -x 'run'
.그리고 그게 다야! 내 프로그램을 시작할 수 있었고 변경할 때마다 자동으로 다시 실행되었습니다!
[Finished running. Exit status: 101]
[Running 'cargo run']
Compiling rusty v0.1.0
Finished dev [unoptimized + debuginfo] target(s) in 0.12s
Running `target/debug/rusty`
["tobey maguire", "andrew garfield", "tom holland"]
[Finished running. Exit status: 0]
[Running 'cargo run']
Compiling rusty v0.1.0
Finished dev [unoptimized + debuginfo] target(s) in 0.13s
Running `target/debug/rusty`
["tobey maguire", "andrew garfield", "tom holland", ""]
[Finished running. Exit status: 0]
[Running 'cargo run']
Compiling rusty v0.1.0
Finished dev [unoptimized + debuginfo] target(s) in 0.12s
Running `target/debug/rusty`
["tobey maguire", "andrew garfield", "tom holland", "pete davidson"]
[Finished running. Exit status: 0]
🦀
사진 제공: Mackenzie Cruz on Unsplash
Reference
이 문제에 관하여(Rust에서 라이브 리로딩), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nickytonline/hot-reloading-in-rust-4i1c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)