-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "digifi"
version = "2.1.3"
edition = "2021"
description = "General purpose financial library and framework for financial modelling, portfolio optimization, and asset pricing."
license = "MIT OR Apache-2.0"
homepage = "https://github.com/Digital-Finance-DigiFi/digifi"
repository = "https://github.com/Digital-Finance-DigiFi/digifi"
documentation = "https://docs.rs/digifi"
keywords = ["stochastic", "portfolio", "pricing", "investment", "asset"]
categories = ["finance", "mathematics", "science", "simulation"]
exclude = ["cargo_commands.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ndarray = { version = "0.16.1", features = ["serde"]} # MIT or Apache 2.0
nalgebra = "0.33.0" # Apache 2.0
# Optional dependencies
serde = { version = "1.0", optional = true, features = ["derive"] } # MIT or Apache 2.0
plotly = { version = "0.12.1", optional = true, features = ["plotly_ndarray"] } # MIT
[features]
# default = ["sample_data", "serde", "plotly"]
sample_data = []
serde = ["dep:serde"]
plotly = ["dep:plotly"]