[package]
edition = "2024"
rust-version = "1.85"
name = "taktora-executor"
version = "0.1.2"
authors = ["Patrick Dahlke"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Execution framework for iceoryx2-based Rust applications."
homepage = "https://taktora.eu"
readme = "README.md"
keywords = [
"iceoryx2",
"ipc",
"realtime",
"robotics",
"ethercat",
]
categories = [
"embedded",
"concurrency",
"network-programming",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/patdhlk/taktora"
resolver = "2"
[features]
default = []
thread_attrs = [
"dep:core_affinity",
"dep:libc",
]
tracing = ["dep:tracing"]
[lib]
name = "taktora_executor"
path = "src/lib.rs"
[[example]]
name = "diamond_graph"
path = "examples/diamond_graph.rs"
[[example]]
name = "interval_loop"
path = "examples/interval_loop.rs"
[[example]]
name = "loan_demo"
path = "examples/loan_demo.rs"
[[example]]
name = "pubsub_pipeline"
path = "examples/pubsub_pipeline.rs"
[[example]]
name = "signal_slot"
path = "examples/signal_slot.rs"
[[test]]
name = "chain"
path = "tests/chain.rs"
[[test]]
name = "channel"
path = "tests/channel.rs"
[[test]]
name = "graph"
path = "tests/graph.rs"
[[test]]
name = "iceoryx2_smoke"
path = "tests/iceoryx2_smoke.rs"
[[test]]
name = "monitor"
path = "tests/monitor.rs"
[[test]]
name = "no_alloc_dispatch"
path = "tests/no_alloc_dispatch.rs"
[[test]]
name = "observer"
path = "tests/observer.rs"
[[test]]
name = "run_loop"
path = "tests/run_loop.rs"
[[test]]
name = "runner"
path = "tests/runner.rs"
[[test]]
name = "server_client_trigger"
path = "tests/server_client_trigger.rs"
[[test]]
name = "service"
path = "tests/service.rs"
[[test]]
name = "signal_slot"
path = "tests/signal_slot.rs"
[[test]]
name = "stoppable"
path = "tests/stoppable.rs"
[[test]]
name = "thread_attrs"
path = "tests/thread_attrs.rs"
[dependencies.bitflags]
version = "2"
[dependencies.core_affinity]
version = "0.8"
optional = true
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossbeam-utils]
version = "0.8"
[dependencies.iceoryx2]
version = "0.8"
[dependencies.num_cpus]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.taktora-bounded-alloc]
version = "0.1.2"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
optional = true
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"