37 lines
819 B
TOML
37 lines
819 B
TOML
[package]
|
|
name = "rtx-portfolio-demo"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
rust-version = "1.92"
|
|
description = "Portfolio optimization demo for RustyTorch++ - Mean-variance, efficient frontier, risk parity"
|
|
authors = ["RustyTorch Team"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
|
|
[dependencies]
|
|
portfolio-shared = { workspace = true }
|
|
rtx-tensor = { workspace = true }
|
|
rtx-ml-classic = { workspace = true }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
rand = "0.9"
|
|
rand_distr = "0.5"
|
|
nalgebra = { version = "0.34", features = ["serde-serialize"] }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
missing_docs = "warn"
|
|
|
|
[lints.clippy]
|
|
all = "warn"
|
|
pedantic = "warn"
|