rMaths 0.1.0

Maths library made for Rust developers with ❤
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 5.39 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 962.49 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • HDB-PROGRAMMING

rMaths, maths with Rust

rMaths is an open source maths library for advanced maths in Rust Lang, so you con complement your Rust aplication/API by using this library.

Why to choose rMaths?

rMaths is open source, you can download its source code via Hdb Cloud but you can't fork or commit in this repo because is private.

How to use rMaths?

Assuming you have cargo installed, first you need to install it in your device by this command:

cargo install rMaths

Build the library by the source code (optional):

curl https://hdb-cloud.netlify.app/archive/rMaths/last/rMaths.tgz

tar xvf rMaths.tgz

cd rMaths

make

Or install the library from the source code (optional):

curl https://hdb-cloud.netlify.app/archive/rMaths/last/rMaths.tgz

tar xvf rMaths.tgz

cd rMaths

sudo make install

Then import it into your project:

Edit the Cargo.toml file:

[dependencies]

rMaths = "0.1.0"

And then the main.rs file (or lib.rs file if you are building a library):

use rMaths::* as rMaths

And you will have done, thank you for visiting that project.