ledge-portfolio 0.2.0

Factor-structured mean-variance portfolio optimization
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.83"
name = "ledge-portfolio"
version = "0.2.0"
authors = ["The Ledge Authors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Factor-structured mean-variance portfolio optimization"
homepage = "https://github.com/Jiangki/ledge"
readme = "README.md"
keywords = [
    "finance",
    "portfolio",
    "optimization",
    "quadratic-program",
    "factor-model",
]
categories = [
    "algorithms",
    "mathematics",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/Jiangki/ledge"

[features]
rayon = ["ledge-core/rayon"]
serde = ["ledge-core/serde"]

[lib]
name = "ledge"
path = "src/lib.rs"

[[example]]
name = "batch"
path = "examples/batch.rs"

[[example]]
name = "rebalance"
path = "examples/rebalance.rs"

[[example]]
name = "sequence"
path = "examples/sequence.rs"

[[example]]
name = "synthetic"
path = "examples/synthetic.rs"

[dependencies.ledge-core]
version = "0.2.0"

[lints.clippy]
cast_precision_loss = "allow"
module_name_repetitions = "allow"
too_many_lines = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"