Skip to content

Commit

Permalink
[eclipse-iceoryx#98] Skeleton for iceoryx2-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
orecham committed May 22, 2024
1 parent 07ee2f0 commit 0c06ae7
Show file tree
Hide file tree
Showing 15 changed files with 136 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ members = [
"iceoryx2-pal/posix/",
"iceoryx2-pal/configuration/",

"iceoryx2-cli/iox2",
"iceoryx2-cli/iox2-introspect",
"iceoryx2-cli/iox2-processes",
"iceoryx2-cli/iox2-pub",
"iceoryx2-cli/iox2-rpc",
"iceoryx2-cli/iox2-services",
"iceoryx2-cli/iox2-sub",

"examples",

"benchmarks/publish-subscribe",
Expand Down
15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2-introspect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2-introspect"
description = "Iceoryx2: CLI for introspecting iceoryx 2 internals"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions iceoryx2-cli/iox2-introspect/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2-processes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2-processes"
description = "Iceoryx2: CLI for managing iceoryx2 processes"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions iceoryx2-cli/iox2-processes/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2-pub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2-pub"
description = "Iceoryx2: CLI for publishing to iceoryx2"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions iceoryx2-cli/iox2-pub/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2-rpc"
description = "Iceoryx2: CLI for rpc operations"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions iceoryx2-cli/iox2-rpc/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2-services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2-services"
description = "Iceoryx2: CLI for managing iceoryx2 services"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
5 changes: 5 additions & 0 deletions iceoryx2-cli/iox2-services/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
fn main() {
println!("Hello, world!");
}


15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2-sub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2-sub"
description = "Iceoryx2: CLI for subscribing to iceoryx2"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions iceoryx2-cli/iox2-sub/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
15 changes: 15 additions & 0 deletions iceoryx2-cli/iox2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "iox2"
description = "Iceoryx2: CLI entry-point"
categories = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions iceoryx2-cli/iox2/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!")
}

0 comments on commit 0c06ae7

Please sign in to comment.