[package]
edition = "2024"
rust-version = "1.88"
name = "phoxal"
version = "0.45.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Phoxal - production-oriented autonomous robot framework: the runtime engine and model (the api contract tree lives in phoxal-api, the typed bus in phoxal-bus)."
homepage = "https://github.com/phoxal/framework"
documentation = "https://github.com/phoxal/framework#readme"
readme = "README.md"
keywords = [
"robotics",
"robot",
"autonomy",
"zenoh",
"simulation",
]
categories = [
"science::robotics",
"simulation",
]
license = "AGPL-3.0-only"
repository = "https://github.com/phoxal/framework"
[lib]
name = "phoxal"
path = "src/lib.rs"
[[example]]
name = "runtime_async_entrypoint"
path = "examples/runtime_async_entrypoint.rs"
[[example]]
name = "runtime_control_loop"
path = "examples/runtime_control_loop.rs"
[[example]]
name = "runtime_query_server"
path = "examples/runtime_query_server.rs"
[[example]]
name = "runtime_serialized_queries"
path = "examples/runtime_serialized_queries.rs"
[[test]]
name = "model_boundary"
path = "tests/model_boundary.rs"
[[test]]
name = "runtime_serialized_smoke"
path = "tests/runtime_serialized_smoke.rs"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"env",
"derive",
"env",
]
[dependencies.const_format]
version = "0.2"
[dependencies.phoxal-api]
version = "=0.45.0"
[dependencies.phoxal-bus]
version = "=0.45.0"
[dependencies.phoxal-macros]
version = "=0.45.0"
[dependencies.phoxal-model]
version = "=0.45.0"
[dependencies.phoxal-runtime-contract]
version = "=0.45.0"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
"signal",
"sync",
"fs",
"process",
"macros",
"rt",
"rt-multi-thread",
"time",
"signal",
"sync",
"fs",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]
[dev-dependencies.jsonschema]
version = "0.46.6"
default-features = false
[dev-dependencies.schemars]
version = "1.2.1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
"signal",
"sync",
"fs",
"process",
"test-util",
]
[dev-dependencies.trybuild]
version = "1"
[lints.rust]
unused = "warn"