-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (38 loc) · 1.15 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
[workspace]
resolver = "2"
members = [
"crates/kult-crypto",
"crates/kult-protocol",
"crates/kult-transport",
"crates/kult-store",
"crates/kult-node",
"crates/kult-rendezvous",
"crates/kult-reference-service",
"crates/kult-mailbox",
"crates/kult-wake",
"crates/kult-ohttp-relay",
"crates/kult-conformance",
"crates/kult-ffi",
"crates/kultd",
]
# The desktop app is its own workspace (apps/desktop/src-tauri): the Tauri
# dependency tree stays out of the core lockfile and cargo-deny surface.
exclude = [
"crates/kult-crypto/fuzz",
"crates/kult-protocol/fuzz",
"apps/desktop/src-tauri",
]
[workspace.package]
version = "0.4.2"
edition = "2021"
# 1.88 required by the locked time-macros; the meshtastic client crate (M4
# mesh carrier) needs 1.85, libp2p ≥ 0.55 needs 1.83 (older libp2p pins the
# unmaintained ring 0.16). CI's msrv job verifies this floor stays honest.
rust-version = "1.88"
license = "AGPL-3.0-only"
repository = "https://github.com/AndriGitDev/Komms"
# Crypto tests are unusably slow without optimization (curve/KEM arithmetic).
[profile.test]
opt-level = 2
[profile.release]
lto = "thin"