© 2023 Hashnode
#cargo
Installing By following the guides for your OS as rustup.rs After that, We need to have the following terminal app installed on our system. rustc is the rust compiler. rustup manages version of Rust cargo is our main tool in development …
cargo fmt If "cargo-fmt" is not installed for the toolchain, rustup component add rustfmt
Cargo is the package manager that aid in downloading and compiling packages. Likewise helps in making packages distributable. Cargo Build Commands Compile Packages cargo build - Compile the current pa…
Package Manager The package manager is a collection of related programs which helps in automating the process of installing, obtaining and upgrading artifacts. In a programming language ecosystem, a p…
Logging can be expensive for programs deployed to Solana or logs may contain sensitive information that should not be available during the normal operation of a program. In these scenarios, we miss h…
Hello World! RUST LANG Rust is a system programming language with the goals of Safety, Speed and Concurrency. Rust is good at embedding with other languages. It has several compile-time safety checks …