[package]
edition = "2024"
rust-version = "1.85"
name = "mt_rat"
version = "0.5.0"
authors = ["Christopher Sieh <stelzo@steado.de>"]
build = false
exclude = [
"**/.github/**",
"**/tests/**",
"**/mt/**",
"**/benches/**",
"**/target/**",
"**/build/**",
"**/dist/**",
"**/docs/**",
"**/venv/**",
"**/vscode/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Share and sync variables over the Minot network."
homepage = "https://uos.github.io/minot"
documentation = "https://uos.github.io/minot"
readme = "README.md"
keywords = ["robotics"]
categories = ["science::robotics"]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/stelzo/minot"
[package.metadata.deb]
name = "librat-dev"
assets = [
[
"rat.h",
"usr/include/rat/rat.h",
"644",
],
[
"librat.pc",
"usr/lib/pkgconfig/librat.pc",
"644",
],
[
"target/release/librat.so",
"usr/lib/librat.so",
"644",
],
[
"target/release/librat.a",
"usr/lib/librat.a",
"644",
],
]
[lib]
name = "rat"
crate-type = [
"dylib",
"rlib",
"staticlib",
]
path = "src/lib.rs"
[[example]]
name = "rat1"
path = "examples/rat1.rs"
[[example]]
name = "rat2"
path = "examples/rat2.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1.86"
[dependencies.env_logger]
version = "0.11.6"
[dependencies.log]
version = "0.4.25"
[dependencies.mt_sea]
version = "0.5.0"
default-features = false
[dependencies.nalgebra]
version = "0.33"
features = ["std"]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.rkyv]
version = "0.8.10"
[dependencies.tokio]
version = "1.49"
features = [
"signal",
"process",
]