Sam Keensamkeen.dev·May 13, 2024Unlocking Rust's JSON Potential: Serde, The Important PartsIn this tutorial, we will explore the Serde (Ser*ializeDeserialize*) crate, a powerful library that simplifies working with JSON in Rust. By the end of this guide, you'll have a solid understanding of how to serialize and deserialize JSON data effici...10 likes·169 readsRust
Charles Martelcmiv.hashnode.dev·Mar 17, 2023Make a cryptocurrency price fetcher with RustI have been learning Rust lately and soaking it up like a sponge. I figured one day, why not make a simple terminal application that fetches price data from the public Kraken REST API. In the process of making this program, I'll show off using one of...46 readsRust
Kirk Paradiswww.park-dev.io·Dec 4, 2022Serializing a chrono::DateTime Using SerdeHave you ever found yourself in need of formatting dates created with chrono for your users? If so, I would like to share a solution I used at work recently. In an attempt to build a report for my business line, I was fetching data from my Postgresql...2.7K readschrono
Imajinimajindevon.hashnode.dev·Nov 8, 2022Why do we need configuration? Creating and handling configuration files in RustConfiguration is nearly always a necessity when it comes to both public and private software. Just imagine, you install a program that plays a sound every 30 seconds. Then suddenly your needs shift, and now you need it to play every 15 seconds. Oh no...635 readsRust