ewebsock
A Rust Websocket client that compiles to both native and web
파일 탐색기
- config.toml
- cargo_shear.yml
- labels.yml
- links.yml
- pages.yml
- rust.yml
- typos.yml
- pull_request_template.md
- extensions.json
- launch.json
- settings.json
- main.rs
- Cargo.toml
- README.md
- lib.rs
- native_tungstenite.rs
- native_tungstenite_tokio.rs
- tungstenite_common.rs
- web.rs
- Cargo.toml
- README.md
- favicon.ico
- icon-1024.png
- icon-256.png
- icon_ios_touch_192.png
- manifest.json
- maskable_icon_x512.png
- sw.js
- app.rs
- lib.rs
- main.rs
- .gitignore
- Cargo.toml
- index.html
- clippy.toml
- generate_changelog.py
- template_update.py
- .gitattributes
- .gitignore
- .typos.toml
- Cargo.lock
- Cargo.toml
- cargo_deny.sh
- CHANGELOG.md
- clippy.toml
- CODE_OF_CONDUCT.md
- deny.toml
- LICENSE-APACHE
- LICENSE-MIT
- lychee.toml
- README.md
- RELEASES.md
- rust-toolchain
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo install
설명 보기 ▼
cargo install
Build and install a Rust binary.
cargo install {{package}}@{{version}}
Install a package from <https://crates.io> (the version is optional - latest by default):
cargo install --git {{repo_url}}
Install a package from the specified Git repository:
cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}
Build from the specified branch/tag/commit when installing from a Git repository:
cargo run
설명 보기 ▼
cargo run
Run the current Cargo package.
Note: The working directory of the executed binary will be set to the current working directory.
cargo {{[r|run]}}
Run the default binary target:
cargo {{[r|run]}} --bin {{name}}
Run the specified binary:
cargo {{[r|run]}} --example {{name}}
Run the specified example:
cargo
설명 보기 ▼
cargo
Rust 프로젝트 및 모듈 종속성(크레이트)을 관리.
`build`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://doc.rust-lang.org/stable/cargo/>.
cargo search {{search_string}}
크레이트 검색:
cargo install {{crate_name}}
바이너리 크레이트 설치:
cargo install --list
설치된 바이너리 크레이트 나열:
