[RUST/COMMON] 크레이트 설치 : getrandom
■ getrandom 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] getrandom = "0.2.3" |
■ getrandom 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] getrandom = "0.2.3" |
■ sha2 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] sha2 = "0.9.8" |
■ block-modes 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] block-modes = "0.8.1" |
■ base64 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] base64 = "0.13.0" |
■ aes 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] aes = "0.7.5" |
■ urlencoding 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] urlencoding = "2.1" |
■ scraper 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] scraper = "0.12" |
■ reqwest 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] reqwest = "0.11.4" |
■ tokio 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] tokio = { version = "1", features = ["full"] } |
■ wasm-bindgen 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] wasm-bindgen = "0.2" |
■ libc 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] libc = "0.2" |
■ cc 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [build-dependencies] cc = "1.0" |
■ peg 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] peg = "0.8" |
■ async-std 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] async-std = {version = "1.8.0", features = ["attributes"]} |
■ tide 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] tide = "0.16" |
■ serde 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 7 8 9 10 |
... [dependencies] serde = "1.0" 또는 serde = {version = "1.0", features = ["derive"]} |
■ actix-web 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] actix-web = "3" |
■ hound 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] hound = "3.4.0" |
■ image 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] image = "0.23.14" |
■ encoding_rs 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] encoding_rs = "0.8.28" |
■ rand 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] rand = "0.8.0" |
■ num-bigint 크레이트를 사용해 큰 수의 거듭제곱을 구하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 7 8 9 10 11 |
[package] name = "test_project" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] num-bigint = "0.4" |
▶ main.rs
1 2 3 4 5 6 7 8 9 10 |
use num_bigint::BigInt; fn main() { let value = BigInt::from(1234); println!("{}", value.pow(5678)); } |
test_project.zip
■ num-bigint 크레이트를 설치하는 방법을 보여준다. ▶ Cargo.toml
1 2 3 4 5 6 |
... [dependencies] num-bigint = "0.4" |