rustybeans/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2022-09-01 23:51:23 +02:00
[package]
authors = ["David Holland <info@dustvoice.de>"]
2022-12-13 11:51:15 +01:00
name = "rustybeans"
version = "0.5.0"
2022-09-01 23:51:23 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
calamine = "0.18.0"
2023-01-24 13:13:39 +01:00
chrono = { version = "0.4.23", features = ["wasmbind"] }
2022-12-13 11:51:15 +01:00
console_error_panic_hook = "0.1.7"
fast-float = "0.2.0"
palette = "0.6.1"
2022-12-13 11:51:15 +01:00
plotly = { version = "0.8.1", features = ["wasm"] }
2023-01-24 13:13:39 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5.9"
indicatif = "0.17.3"
dialoguer = "0.10.3"
notify-rust = "4.7.0"
2023-01-27 08:11:15 +01:00
crossterm = "0.25.0"
2023-01-27 17:02:01 +01:00
rfd = "0.10.0"
egui = { git = "https://github.com/emilk/egui", branch = "master" }
eframe = { git = "https://github.com/emilk/egui", branch = "master" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
wasm-bindgen-futures = "0.4"
[profile.release]
opt-level = 2 # fast and small wasm
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2