30 lines
727 B
TOML
30 lines
727 B
TOML
[package]
|
|
name = "distribution-calc"
|
|
version = "0.1.1"
|
|
edition = "2024"
|
|
authors = ["Felipe Contreras Salinas <felipe@bstr.cl>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1.7"
|
|
console_log = "1.0.0"
|
|
fluent-templates = "0.13.0"
|
|
leptos = { version = "0.8.6", features = ["csr", "tracing"] }
|
|
leptos-fluent = "0.2.16"
|
|
leptos_meta = { version = "0.8.5" }
|
|
leptos_router = { version = "0.8.5" }
|
|
log = "0.4.27"
|
|
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen = "0.2.100"
|
|
wasm-bindgen-test = "0.3.50"
|
|
web-sys = { version = "0.3.77", features = ["Document", "Window"] }
|
|
|
|
|
|
[profile.release]
|
|
opt-level = 'z'
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|