Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 553 Bytes

INSTALL.md

File metadata and controls

27 lines (18 loc) · 553 Bytes

Installation of RustQuant

If you haven't already, you obviously need to install Rust. See here: https://www.rust-lang.org/tools/install

Create a new Rust project:

cargo new my_project && cd my_project

In your Rust project's root directory, simply run:

cargo add RustQuant

This will add the latest version to your project.

If you require a specific version, add the following to your Cargo.toml file:

[dependencies]
RustQuant = "*"

replacing "*" with the version number you require, such as "0.0.17".