-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 1.04 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
[workspace]
members = [
"app/src-tauri",
"crates/app-core",
"crates/local-store",
"crates/warframe-acquisition",
"crates/warframe-domain",
"crates/warframe-market",
"crates/warframe-status",
]
resolver = "2"
[workspace.package]
version = "0.9.1"
edition = "2024"
license = "GPL-3.0-only"
rust-version = "1.85"
repository = "https://github.com/Deftera186/tennoscope"
[workspace.dependencies]
log = { version = "0.4", features = ["std"] }
serde = { version = "1", features = ["derive"] }
thiserror = "2"
zeroize = "1"
[profile.dev]
opt-level = 2
# Off because `opt-level` is on. Incremental reuses a codegen unit while its neighbours are
# regenerated, and an optimised build gives the private symbols they share names that change with
# the unit -- so the reused object links against an `anon.<hash>.llvm.<id>` nobody emits any more and
# the binary fails to link. Little is lost: at `opt-level = 2` most of a rebuild is optimisation
# work incremental cannot skip anyway, and a clean build of the whole workspace takes 22s.
incremental = false