-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 1 KB
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
[workspace]
members = [
"crates/memory_pak_core",
"crates/memory_pak_wasm",
"crates/memory_pak_tauri",
]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
authors = ["Aspenini"]
license = "MIT"
repository = "https://github.com/Aspenini/Memory-Pak"
homepage = "https://aspenini.github.io/Memory-Pak"
[workspace.dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "wasmbind"] }
directories = "6.0"
parking_lot = "0.12"
postcard = { version = "1.0", default-features = false, features = ["use-std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-wasm-bindgen = "0.6"
thiserror = "2.0"
unicode-normalization = "0.1"
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1"
# Smaller, faster Tauri release bundles. The defaults add ~30-50% binary size
# and slow down startup; these are the values the Tauri team recommends.
[profile.release]
opt-level = "s"
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"