Skip to content

Commit f872030

Browse files
hdds-teamOlivier ESTEVE
andauthored
Add HDDS shape_main source (srcRs/HDDS) (#83)
* Add HDDS shape_main source (srcRs/HDDS) HDDS is a pure-Rust DDS (Data Distribution Service) implementation. Website: https://github.com/hdds-team/hdds The shape_main application uses hdds 1.1 from crates.io. Only the interoperability test application is included, not the library itself. * fix: correct author name and repository URL in Cargo.toml --------- Co-authored-by: Olivier ESTEVE <olivier@hdds.io>
1 parent 157a9e5 commit f872030

2 files changed

Lines changed: 1936 additions & 0 deletions

File tree

srcRs/HDDS/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "hdds_shape_main_linux"
3+
version = "0.1.0"
4+
edition = "2021"
5+
rust-version = "1.75"
6+
description = "OMG DDS-RTPS Interoperability"
7+
authors = ["Olivier Esteve <olivier@naskel.com>"]
8+
repository = "https://github.com/hdds-team/hdds"
9+
publish = false
10+
readme = false
11+
12+
[[bin]]
13+
name = "shape_main"
14+
path = "src/main.rs"
15+
16+
[dependencies]
17+
hdds = "1.1"
18+
19+
[profile.release]
20+
opt-level = 3
21+
lto = true
22+
strip = "debuginfo"

0 commit comments

Comments
 (0)