-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (48 loc) · 1.56 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (48 loc) · 1.56 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
members = [
"nodedb-studio",
]
resolver = "2"
[workspace.package]
version = "0.0.0-beta.1"
edition = "2024"
rust-version = "1.96"
license = "Apache-2.0"
repository = "https://github.com/NodeDB-Lab/nodedb-studio"
homepage = "https://nodedb.dev"
[workspace.dependencies]
# Internal NodeDB crates. The `native` feature (real client transport) is
# enabled in the phase that first constructs a NativeClient — it drags in a
# TLS + C-toolchain build tree (tokio-rustls, aws-lc-rs, cmake), so it is not
# carried while the seam impl is an inert stub.
nodedb-client = "0.3.0"
nodedb-types = "0.3.0"
# Async
async-trait = "0.1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
# UI. The `router` feature re-exports the router through dioxus::prelude.
# Desktop-only for the skeleton.
dioxus = { version = "0.7", features = ["desktop", "router"] }
# Test-only: render components to a string for render-level assertions.
dioxus-ssr = "0.7"
# Serialization. Kept for derive on models/preferences; no runtime parsing
# happens in the skeleton (mock data is hardcoded Rust).
serde = { version = "1", features = ["derive"] }
sonic-rs = "0.5"
# Error handling / diagnostics
thiserror = "2.0"
tracing = "0.1"
[profile.dev]
debug = "line-tables-only"
# Strip symbol tables from dev/test binaries to keep target/ small. This
# unsymbolises ordinary dev builds; use `--profile debugging` for full symbols.
strip = true
[profile.dev.package."*"]
debug = false
[profile.debugging]
inherits = "dev"
debug = true
strip = false
[profile.release]
lto = "thin"
strip = true