Skip to content

v0.3.1 - Maintenance Release

Choose a tag to compare

@Nonanti Nonanti released this 30 Aug 11:32
· 7 commits to master since this release

πŸ”§ Maintenance Release

What's Changed

  • 🧹 Repository maintenance and cleanup
  • πŸ“š Documentation improvements
  • ✨ Clean commit history for better maintainability

Installation

[dependencies]
mathcore = "0.3.1"

Quick Start

use mathcore::MathCore;

let math = MathCore::new();

// Symbolic differentiation
let derivative = MathCore::differentiate("x^3 + 2*x", "x").unwrap();
println!("d/dx(x^3 + 2*x) = {}", derivative);

// Solve equations
let roots = MathCore::solve("x^2 - 5*x + 6", "x").unwrap();
println!("Roots: {:?}", roots);

// Evaluate expressions
let result = math.calculate("2 * pi * 5").unwrap();
println!("2Ο€ Γ— 5 = {}", result);

Full Changelog: v0.3.0...v0.3.1


πŸ“¦ Crates.io: https://crates.io/crates/mathcore
πŸ“š Documentation: https://docs.rs/mathcore
⭐ Star us on GitHub!