$, cargo-*: add Korean translation (#13943)

This commit is contained in:
HoJeong Im
2024-10-03 18:48:23 +09:00
committed by GitHub
parent 7cc6c7195a
commit 0327318dc0
38 changed files with 763 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# cargo check
> 로컬 패키지와 모든 종속 항목에 오류가 있는지 확인.
> 더 많은 정보: <https://doc.rust-lang.org/cargo/commands/cargo-check.html>.
- 현재 패키지 검사:
`cargo check`
- 모든 테스트 검사:
`cargo check --tests`
- `tests/integration_test1.rs`에서 통합 테스트를 확인:
`cargo check --test {{통합_테스트1}}`
- `feature1``feature2` 기능이 포함된 현재 패키지를 확인:
`cargo check --features {{기능1,기능2}}`
- 기본 기능이 비활성화된 현재 패키지 확인:
`cargo check --no-default-features`