[package]
name = "rebalance"
version = "0.1.3"
authors = ["Behrang Shafei"]
edition = "2021"
rust-version = "1.72"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/rebalance"
description = "Portfolio (re-)balancing and simulation"
repository = "https://github.com/bertiqwerty/balance/"
homepage = "https://github.com/bertiqwerty/balance/"
readme = "README.md"
keywords = ["finance", "investment", "portfolio", "stock", "simulation"]
categories = ["simulation", "finance"]
include = ["**/*.rs", "Cargo.toml"]
[dependencies]
csv = "1.3.0"
egui = "0.30.0"
rand = { version = "0.8.5", default-features = false, features = ["std_rng"] }
rand_distr = { version = "0.4.3", default-features = false }
eframe = { version = "0.30.0", default-features = false, features = [
"default_fonts",
"glow",
"persistence",
] }
serde = { version = "1", features = ["derive"] }
exmex = { version = "0.20.3", features = ["serde", "value"] }
web-sys = { version = "0.3.70", features = [
"Window",
"Document",
"Url",
"Blob",
"Location",
"Element",
"HtmlElement",
"CssStyleDeclaration",
] }
serde-wasm-bindgen = "0.6"
wasm-bindgen-futures = "0.4"
wasm-bindgen = "0.2.93"
js-sys = "0.3.70"
ehttp = "0.5.0"
serde_json = "1.0.124"
egui_plot = "0.30.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
[profile.release]
opt-level = 2
[profile.dev.package."*"]
opt-level = 2
[patch.crates-io]