-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (35 loc) · 804 Bytes
/
Cargo.toml
File metadata and controls
44 lines (35 loc) · 804 Bytes
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
43
44
[workspace]
resolver = "2"
members = [
"crates/deck-contracts",
"app/src-tauri",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/phoenixvc/deck"
[workspace.dependencies]
# Shared contracts
deck-contracts = { path = "crates/deck-contracts" }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# Tauri
tauri = { version = "2.0", features = [] }
tauri-build = { version = "2.0", features = [] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# Time
chrono = { version = "0.4", features = ["serde"] }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true