tempconverter2025

Crates.iotempconverter2025
lib.rstempconverter2025
version0.1.1
created_at2025-05-21 05:15:01.854211+00
updated_at2025-09-05 16:18:46.578086+00
descriptionSimple Rust library to convert temperatures between Celsius, Fahrenheit, and Kelvin.
homepage
repositoryhttps://github.com/Cryptonations/tempconverter2025
max_upload_size
id1682947
size5,964
(Cryptonations)

documentation

https://docs.rs/tempconverter2025

README

tempconverter2025

A simple Rust library to convert temperatures between Celsius, Fahrenheit, and Kelvin.

Usage

Add this to your Cargo.toml:

tempconverter2025 = "0.1.0"

Then in your code:

use tempconverter2025::*;

fn main() {
    println!("{}", celsius_to_fahrenheit(0.0)); // 32.0
    println!("{}", fahrenheit_to_celsius(212.0)); // 100.0
    println!("{}", celsius_to_kelvin(100.0)); // 373.15
}
Commit count: 10

cargo fmt