Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Apr 30, 2023Rust ProjectsIn computer science, a software project refers to the entire process of developing software, including planning, designing, coding, testing, and deploying a program that meets a specific set of requirements. Concepts The project concept is the initia...Discuss·62 readsRust LanguageRust
Shreyas K Sblog.themissingsemicolon.dev·Sep 24, 2022Cargo - CommandsCargo 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 package. cargo build [OPTIONS] OPTIONS Package Sele...Discuss·1 like·98 readsRustyCargo
Shreyas K Sblog.themissingsemicolon.dev·Sep 22, 2022Cargo - Intro to Rust Package ManagerPackage 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 package manager is a developer-focused tool which a...Discuss·76 readsRustyCargo
SohrabforLab Elevenblog.labeleven.dev·Jun 27, 2022Microblog: Debug logging in Anchor and SolanaLogging 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 having different log levels, as we are used to with...Discuss·397 readsSolana
Sriram Bsriram23.hashnode.dev·Nov 12, 2017The RUST LanguageHello 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 that eliminate the data races. How to install it? ...DiscussRust