-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (64 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
68 lines (64 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = [
"crates/hdds",
"crates/hdds-codegen",
"crates/hdds-discovery-server",
"crates/hdds-persistence",
"crates/hdds-recording",
"crates/hdds-gateway",
"crates/hdds-router",
"crates/hdds-logger",
"crates/hdds-micro",
"tools/hdds-gen",
"tools/hddsctl",
"tools/hdds-admin",
"tools/hdds-convert-qos",
"tools/hdds-debugger",
"tools/hdds-ws",
"tools/hdds-topic-echo",
"tools/hdds-latency-probe",
"tools/hdds-stress",
"tools/hdds-discovery-dump",
"tools/hdds-shm-viewer",
"crates/hdds-c",
"crates/hdds-telemetry-otlp",
"crates/hdds-micro-c",
"crates/rmw-hdds",
"sdk/rust",
"sdk/samples/01_basics/rust",
"sdk/samples/02_qos/rust",
"sdk/samples/03_types/rust",
"sdk/samples/04_discovery/rust",
"sdk/samples/05_security/rust",
"sdk/samples/06_performance/rust",
"sdk/samples/07_advanced/rust",
"sdk/samples/08_interop/rust",
"sdk/samples/09_ros2/rust",
"sdk/samples/10_usecases/rust",
"sdk/samples/11_embedded/rust",
]
exclude = ["crates/hdds/fuzz", "fuzz"]
resolver = "2"
[profile.test]
opt-level = 0
debug = true
[workspace.package]
version = "1.1.0"
authors = ["naskel.com"]
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "High-performance DDS (Data Distribution Service) implementation in pure Rust"
repository = "https://git.hdds.io/hdds/hdds.git"
readme = "README.md"
keywords = ["dds", "rtps", "middleware", "pubsub", "realtime"]
categories = ["network-programming"]
# Conservative release profile for ESP32/Xtensa to avoid compiler bugs
[profile.release-esp32]
inherits = "release"
opt-level = 1 # Lower optimization to avoid Xtensa LLVM bugs
lto = false # Disable LTO
codegen-units = 1 # Single codegen unit for consistency
# Benchmark profile with LTO (matches original 257ns measurement conditions)
[profile.bench]
lto = "thin"
codegen-units = 1