-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 967 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "msg"
version = "0.1.0"
edition = "2021"
[build]
target = "wasm32-unknown-unknown"
# [lib]
# crate-type = ["cdylib", "rlib"]
[dependencies]
regex = { version = "1.10.2", features = ["pattern"] }
clap = { version = "4.4.7", features = ["derive"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
chrono = "0.4.31"
leptos = { version = "0.5.1", features = ["csr", "nightly", "template_macro"] }
leptos_router = { version = "0.5.1", features = ["csr", "nightly"] }
plotly = { version = "0.8.4", features = ["plotly_image", "wasm"] }
web-sys = { version = "0.3.64", features = [
"File",
"FileList",
"FileReader",
"HtmlInputElement",
] }
wasm-bindgen-futures = "0.4.37"
js-sys = "0.3.64"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
[profile.wasm-release]
inherits = "release"
opt-level = 'z'
lto = true
codegen-units = 1
[package.metadata.leptos]
lib-profile-release = "wasm-release"